/**
 * @file
 * Custom styles for Westernoil theme.
 */

:root {
	--wo-primary: #00506b;
	--wo-primary-strong: #00344c;
	--wo-accent: #fdb515;
	--wo-accent-soft: #ffd97a;
	--wo-btn-red: #cc0007;
	--wo-btn-red-hover: #a30006;
	--wo-ink: #142730;
	--wo-muted: #5b6f79;
	--wo-soft: #f3f6f8;
	--wo-white: #ffffff;
	--wo-line: #d4e0e6;
}

body {
	color: var(--wo-ink);
	background: var(--wo-white);
	font-family: "Source Sans 3", "Helvetica Neue", Helvetica, sans-serif;
	line-height: 1.6;
}

.page-node-type-page .breadcrumb-wrapper {
	display: none;
}

/* Front page should feel like a standalone marketing shell, not a default node page. */
body.path-frontpage .breadcrumbs,
body.path-frontpage .node--type-page .header-title,
body.path-frontpage .gavias-builder--content > .link-edit-blockbuider {
	display: none;
}

body.path-frontpage #content.content.content-full > .container.container-bg {
	max-width: 100%;
	padding: 0;
}

#content.content.content-full > .container.container-bg,
#content.content.content-full .bb-container.container {
	width: 100%;
	max-width: 100%;
	padding-left: 0;
	padding-right: 0;
}

#content.content.content-full .row.row-wrapper {
	margin-left: 0;
	margin-right: 0;
}

#content.content.content-full .gsc-column {
	padding-left: 0;
	padding-right: 0;
}

body.path-frontpage .content-main-inner,
body.path-frontpage #page-main-content,
body.path-frontpage .main-content-inner,
body.path-frontpage .main-content {
	padding: 0;
	margin: 0;
}

#header.header-default .header-main {
	background: #fff;
	border-bottom: 1px solid #d8e3e8;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

#header .topbar {
	padding: 0px 0;
	background:
		linear-gradient(135deg, #00344c 0%, #004a64 52%, #00506b 100%);
	overflow: visible;
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
	box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

#header .topbar .topbar-left,
#header .topbar .topbar-right {
	background: transparent;
	padding-top: 15px;
	padding-bottom: 15px;
}

#header .topbar .topbar-right::before,
#header .topbar .topbar-right::after {
	content: none;
	display: none;
}

#header .topbar .container {
	padding-left: 0;
	padding-right: 0;
}

#header .topbar .container > .row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: nowrap;
	width: 100%;
	margin-left: 0;
	margin-right: 0;
}

#header .topbar .container > .row > [class*="col-"] {
	padding-left: 0;
	padding-right: 0;
}

#header .topbar .topbar-left {
	flex: 1 1 0;
	flex-basis: 0;
	width: auto;
	max-width: none;
}

#header .topbar .topbar-right {
	flex: 0 0 auto;
	flex-basis: auto;
	width: auto;
	max-width: none;
	margin-left: 22px;
	text-align: right;
}

#header .topbar .topbar-content {
	min-width: 0;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px 14px;
}

#header .topbar .topbar-right .topbar-content {
	justify-content: flex-end;
}

#header .topbar .topbar-content,
#header .topbar .topbar-content a {
	color: rgba(255, 255, 255, 0.9);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	white-space: nowrap;
}

#header .topbar .topbar-content a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 6px 11px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.17);
	background: rgba(255, 255, 255, 0.08);
	text-decoration: none;
	transition: color 0.22s ease, background-color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

#header .topbar .topbar-content a::before {
	content: "\f105";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	font-size: 12px;
	line-height: 1;
	color: rgba(255, 255, 255, 0.9);
}

#header .topbar .topbar-left .topbar-content a::before {
	content: "\f02d";
}

#header .topbar .topbar-right .topbar-content a {
	background: rgba(253, 181, 21, 0.14);
	border-color: rgba(253, 181, 21, 0.38);
}

#header .topbar .topbar-right .topbar-content a::before {
	content: "\f095";
	color: var(--wo-accent-soft);
}

#header .topbar .topbar-right .topbar-content a:nth-child(2) {
	background: rgba(253, 181, 21, 0.24);
	border-color: rgba(253, 181, 21, 0.68);
	color: #ffffff;
}

#header .topbar .topbar-right .topbar-content a:nth-child(2)::before {
	content: "\f071";
	color: #fff2c8;
}

@media (max-width: 991px) {
	#header .topbar {
		padding: 7px 0;
	}

	#header .topbar .container > .row {
		flex-wrap: wrap;
	}

	#header .topbar .topbar-left,
	#header .topbar .topbar-right {
		flex: 1 1 100%;
		margin-left: 0;
		text-align: left;
	}

	#header .topbar .topbar-content {
		gap: 6px 10px;
	}

	#header .topbar .topbar-content a {
		font-size: 13px;
		line-height: 1.25;
		white-space: normal;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	#header .topbar .topbar-content,
	#header .topbar .topbar-content a {
		font-size: 14px;
	}
}

#header .topbar .topbar-content a:hover,
#header .topbar .topbar-content a:focus {
	color: var(--wo-accent-soft);
	text-decoration: none;
	background: rgba(255, 255, 255, 0.18);
	border-color: rgba(255, 255, 255, 0.35);
	transform: translateY(-1px);
}

#header .topbar .topbar-right .topbar-content a:hover,
#header .topbar .topbar-right .topbar-content a:focus {
	background: rgba(253, 181, 21, 0.34);
	border-color: rgba(253, 181, 21, 0.82);
	color: #ffffff;
}

#header .site-branding-logo img {
	height: 55px;
	width: auto;
}

#header .quick-side-icon .icon a {
	display: block;
	width: 100%;
	height: 100%;
	line-height: 34px;
	text-align: center;
}
#header .quick-side-icon .icon a:hover{
	background-color:#dc3545;
}

#header .quick-side-icon .wo-company-info-icon {
	font-size: 17px;
	line-height: 34px;
	color: var(--wo-primary);
	transition: color 0.2s ease;
}

#header .quick-side-icon:hover .wo-company-info-icon,
#header .quick-side-icon:focus-within .wo-company-info-icon {
	color: #ffffff;
}

#header .header-main .container.header-content-layout {
	padding-left: 0;
	padding-right: 0;
}

#header .header-main .content-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
}

#header .header-main .branding {
	float: none;
	flex: 0 0 auto;
	width: auto;
}

#header .header-main .header-inner {
	flex: 1 1 auto;
	width: auto;
}

#header .header-main .main-menu {
	width: auto;
	height: auto;
	min-height: 0;
	margin-left: auto;
}

#header .header-main .gva-navigation {
	float: none;
	margin-left: auto;
}

#header .header-main .gva-navigation .gva_menu_main {
	float: none;
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
	align-items: center;
	gap: 0 2px;
	margin: 0;
	padding: 0;
}

#header .header-main .gva-navigation .gva_menu_main > li {
	float: none;
}

#header .site-branding__name a {
	color: #12312d;
	font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

#header .gva-navigation .gva_menu_main > li > a {
	padding: 24px 12px;
	color: #1b2d31;
	font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
	font-size: 17px;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

@media (min-width: 992px) and (max-width: 1199px) {
	#header .gva-navigation .gva_menu_main > li > a {
		padding: 22px 9px;
		font-size: 15px;
	}
}

#header .gva-navigation .gva_menu_main > li > a:hover,
#header .gva-navigation .gva_menu_main > li.menu-item--active-trail > a {
	color: var(--wo-primary);
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.wo-title-font {
	margin-top: 0;
	color: var(--wo-ink);
	font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

a {
	color: var(--wo-primary);
	text-decoration: none;
}

a:hover,
a:focus {
	color: var(--wo-primary-strong);
	text-decoration: underline;
}

.wo-page {
	position: relative;
}

.slideshow_content .gavias_sliderlayer.fullwidthbanner-container {
	position: relative;
	margin: 0;
	overflow: hidden;
	background:
		radial-gradient(circle at 80% 25%, rgba(255, 209, 73, 0.18), transparent 46%),
		linear-gradient(100deg, #00364d 0%, #00506b 52%, #0a6780 100%) !important;
}

.slideshow_content .gavias_sliderlayer.fullwidthbanner-container::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(5, 35, 30, 0.32) 0%, rgba(5, 35, 30, 0.08) 60%, rgba(5, 35, 30, 0) 100%);
	pointer-events: none;
	z-index: 1;
}

.slideshow_content .tp-bgimg.defaultimg {
	opacity: 0 !important;
}

.slideshow_content .wo-slide-kicker {
	font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
	font-weight: 600;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.slideshow_content .wo-slide-title {
	font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.slideshow_content .wo-slide-subtitle {
	max-width: 760px;
	font-family: "Source Sans 3", "Helvetica Neue", Helvetica, sans-serif;
	font-weight: 500;
	letter-spacing: 0.01em;
	text-transform: none;
}

.slideshow_content .wo-slide-cta .wo-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-right: 12px;
}

.slideshow_content .wo-slide-cta .wo-slide-btn-secondary {
	color: #ffffff;
	border-color: var(--wo-btn-red);
	background: var(--wo-btn-red);
}

.slideshow_content .tp-bullets {
	z-index: 25;
}

.slideshow_content .tp-bullet {
	width: 12px;
	height: 12px;
	border: 2px solid rgba(255, 255, 255, 0.65);
	border-radius: 999px;
	background: transparent;
	transition: transform 0.2s ease, background-color 0.2s ease;
}

.slideshow_content .tp-bullet:hover,
.slideshow_content .tp-bullet.selected {
	background: #ffd149;
	border-color: #ffd149;
	transform: scale(1.12);
}

.slideshow_content .tp-leftarrow,
.slideshow_content .tp-rightarrow {
	width: 52px;
	height: 52px;
	border-radius: 999px;
	background: rgba(7, 35, 30, 0.42);
	border: 1px solid rgba(255, 255, 255, 0.34);
	transition: transform 0.2s ease, background-color 0.2s ease;
}

.slideshow_content .tp-leftarrow:hover,
.slideshow_content .tp-rightarrow:hover {
	transform: translateY(-2px);
	background: rgba(7, 35, 30, 0.64);
}

.slideshow_content .wo-slide-links {
	display: grid;
	gap: 10px;
}

.slideshow_content .wo-slide-links a {
	display: block;
	padding: 11px 14px;
	border-radius: 12px;
	color: #fff;
	font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
	font-size: 17px;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	text-decoration: none;
	background: rgba(12, 45, 38, 0.62);
	border: 1px solid rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(2px);
	transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.slideshow_content .wo-slide-links a:hover,
.slideshow_content .wo-slide-links a:focus {
	transform: translateX(8px);
	background: rgba(17, 66, 55, 0.86);
	border-color: rgba(255, 209, 73, 0.9);
	text-decoration: none;
}

.slideshow_content .wo-slide-emergency {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	width: 100%;
	padding: 10px 16px;
	border-radius: 14px;
	background: #ffd149;
	color: #1f2a1f;
	text-decoration: none;
	box-shadow: 0 14px 22px rgba(0, 0, 0, 0.22);
	animation: wo-pulse 2.4s ease-in-out infinite;
}

.slideshow_content .wo-slide-emergency span {
	font-family: "Source Sans 3", "Helvetica Neue", Helvetica, sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.slideshow_content .wo-slide-emergency strong {
	font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
	font-size: 26px;
	line-height: 1;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.slideshow_content .wo-slide-emergency:hover,
.slideshow_content .wo-slide-emergency:focus {
	color: #1f2a1f;
	text-decoration: none;
	transform: translateY(-2px);
}

.slideshow_content .wo-scroll-cue {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	opacity: 0.88;
}

.slideshow_content .wo-scroll-dot {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: #ffd149;
	animation: wo-scroll-dot 1.1s ease-in-out infinite;
}

@keyframes wo-pulse {
	0%,
	100% {
		box-shadow: 0 14px 22px rgba(0, 0, 0, 0.22);
	}
	50% {
		box-shadow: 0 18px 28px rgba(0, 0, 0, 0.34);
	}
}

@keyframes wo-scroll-dot {
	0% {
		transform: translateY(-2px);
		opacity: 1;
	}
	50% {
		transform: translateY(2px);
		opacity: 0.45;
	}
	100% {
		transform: translateY(-2px);
		opacity: 1;
	}
}

@media (max-width: 991px) {
	.slideshow_content .wo-slide-cta .wo-btn {
		margin-right: 8px;
		margin-bottom: 8px;
	}

	.slideshow_content .wo-slide-links-wrap,
	.slideshow_content .wo-slide-emergency-wrap,
	.slideshow_content .wo-slide-scroll-wrap {
		display: none;
	}
}

.wo-page .container {
	position: relative;
	z-index: 2;
	width: calc(100% - 48px) !important;
	max-width: 1280px !important;
	margin-left: auto;
	margin-right: auto;
	padding-left: 0;
	padding-right: 0;
}

.wo-hero {
	position: relative;
	overflow: visible;
	padding: 68px 0 56px;
	color: var(--wo-white);
	background:
		radial-gradient(circle at 78% 28%, rgba(255, 209, 73, 0.12), transparent 48%),
		linear-gradient(100deg, #00364d 0%, #00506b 52%, #0a6780 100%);
}

.wo-hero .container {
	position: relative;
	z-index: 2;
}

.wo-hero .container::before {
	content: "QUALITY WASTE MANAGEMENT & HAZMAT SERVICES";
	display: inline-block;
	margin-bottom: 14px;
	padding: 6px 12px;
	border: 1px solid rgba(255, 255, 255, 0.38);
	border-radius: 999px;
	color: rgba(255, 255, 255, 0.94);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	background: rgba(3, 23, 34, 0.34);
}

.wo-hero::before {
	content: "";
	position: absolute;
	top: -80px;
	right: -110px;
	width: 300px;
	height: 300px;
	border: 3px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
}

.wo-hero::after {
	content: "";
	position: absolute;
	bottom: -110px;
	left: -100px;
	width: 320px;
	height: 320px;
	border: 2px solid rgba(255, 209, 73, 0.34);
	border-radius: 999px;
}

.wo-utility-strip {
	padding: 10px 0;
	background: var(--wo-primary-strong);
}

.wo-utility-strip .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.wo-utility-list {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
}

.wo-utility-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 18px;
}

.wo-utility-list a {
	color: rgba(255, 255, 255, 0.88);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.wo-utility-emergency {
	color: var(--wo-accent-soft);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

#footer.footer {
	background: #0a2a3d;
}

#footer .footer-center {
	padding-top: 36px;
	padding-bottom: 20px;
}

#footer h4,
#footer p,
#footer a,
#footer li,
#footer .copyright {
	color: rgba(255, 255, 255, 0.9);
}

#footer h4 {
	margin-bottom: 14px;
	font-size: 24px;
	line-height: 1;
}

#footer .footer-column {
	margin-bottom: 18px;
}

.wo-footer-brand p {
	margin-bottom: 10px;
	font-size: 16px;
	line-height: 1.5;
}

.wo-footer-logo-link {
	display: inline-block;
	margin-bottom: 14px;
}

.wo-footer-logo {
	display: block;
	width: 100%;
	max-width: 220px;
	height: auto;
}

.wo-footer-address {
	position: relative;
	margin-bottom: 10px;
	padding-left: 24px;
}

.wo-footer-address::before {
	content: "\f3c5";
	position: absolute;
	top: 2px;
	left: 0;
	font-family: "Font Awesome 6 Free";
	font-size: 14px;
	font-weight: 900;
	color: #dc3545;
}

#footer .wo-footer-address a {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
}

#footer .wo-footer-address a:hover,
#footer .wo-footer-address a:focus {
	color: var(--wo-accent-soft);
	text-decoration: underline;
}

.wo-footer-contact {
	position: relative;
	margin-bottom: 10px;
	padding-left: 24px;
	font-size: 16px;
	line-height: 1.45;
}

.wo-footer-contact::before {
	position: absolute;
	top: 2px;
	left: 0;
	font-family: "Font Awesome 6 Free";
	font-size: 13px;
	font-weight: 900;
	color: #dc3545;
}

.wo-footer-contact-email::before {
	content: "\f0e0";
}

.wo-footer-contact-phone::before {
	content: "\f095";
}

.wo-footer-contact-emergency::before {
	content: "\f071";
}

#footer .wo-footer-contact a {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
}

#footer .wo-footer-contact a:hover,
#footer .wo-footer-contact a:focus {
	color: var(--wo-accent-soft);
	text-decoration: underline;
}

.wo-footer-nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.wo-footer-nav li {
	margin-bottom: 8px;
}

.wo-footer-nav a {
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.01em;
}

.wo-footer-nav a:hover,
.wo-footer-nav a:focus {
	color: #ffe08a;
	text-decoration: none;
}

#footer .copyright {
	border-top: 1px solid rgba(255, 255, 255, 0.18);
	background: #072236;
}

.wo-copyright-line {
	padding: 10px 0;
	font-size: 14px;
	letter-spacing: 0.01em;
	text-align: center;
}

.wo-finder-shell {
	margin-top: -36px;
	padding-bottom: 30px;
	position: relative;
	z-index: 4;
	background: linear-gradient(180deg, transparent 0%, #f6faf7 100%);
}

.wo-finder-card {
	padding: 24px;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 18px 42px rgba(17, 48, 36, 0.15);
}

.wo-finder-card h2 {
	margin-bottom: 14px;
	font-size: clamp(28px, 3vw, 38px);
	line-height: 1;
}

.wo-finder-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr auto;
	gap: 12px;
}

.wo-finder-field {
	padding: 12px 14px;
	border: 1px solid var(--wo-line);
	border-radius: 10px;
	background: #f9fcfa;
}

.wo-finder-field span {
	display: block;
	margin-bottom: 2px;
	color: #5f7168;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.wo-finder-field strong {
	display: block;
	color: #17332f;
	font-size: 16px;
	font-weight: 700;
}

.wo-finder-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 22px;
	border-radius: 10px;
	color: #fff;
	font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
	font-size: 21px;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	background: var(--wo-btn-red);
}

.wo-finder-btn:hover,
.wo-finder-btn:focus {
	color: #fff;
	text-decoration: none;
	background: var(--wo-btn-red-hover);
}

.wo-trust-band {
	padding: 22px 0;
	background: #fff;
	border-top: 1px solid #e4ece8;
	border-bottom: 1px solid #e4ece8;
}

.wo-trust-band .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.wo-trust-text {
	color: #243b35;
	font-size: 26px;
	font-weight: 700;
	line-height: 1.05;
	font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
	text-transform: uppercase;
}

.wo-pill-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 10px;
}

.wo-pill-links a {
	display: inline-flex;
	align-items: center;
	padding: 8px 13px;
	border: 1px solid #cad9d1;
	border-radius: 999px;
	color: #1a3832;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	background: #f8fbf9;
}

.wo-kicker {
	margin-bottom: 14px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.wo-hero h1 {
	margin-bottom: 14px;
	color: var(--wo-white);
	font-size: clamp(38px, 5vw, 66px);
	line-height: 1.02;
}

.wo-hero p {
	max-width: 760px;
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.94);
	font-size: 20px;
}

.wo-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 28px;
}

.wo-btn {
	display: inline-block;
	padding: 12px 22px;
	border: 2px solid transparent;
	border-radius: 999px;
	font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.wo-btn-primary {
	color: #ffffff;
	background: var(--wo-btn-red);
}

.wo-btn-secondary {
	color: var(--wo-white);
	border-color: var(--wo-btn-red);
	background: var(--wo-btn-red);
}

.wo-btn:hover,
.wo-btn:focus {
	transform: translateY(-2px);
	text-decoration: none;
	color: #ffffff;
	background: var(--wo-btn-red-hover);
	border-color: var(--wo-btn-red-hover);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

button,
input[type="submit"],
input[type="button"],
.btn,
.button,
.gva-btn,
.btn-theme {
	background: var(--wo-btn-red);
	border-color: var(--wo-btn-red);
	color: #ffffff;
}

button:hover,
button:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
input[type="button"]:hover,
input[type="button"]:focus,
.btn:hover,
.btn:focus,
.button:hover,
.button:focus,
.gva-btn:hover,
.gva-btn:focus,
.btn-theme:hover,
.btn-theme:focus {
	background: var(--wo-btn-red-hover);
	border-color: var(--wo-btn-red-hover);
	color: #ffffff;
}

input.search-form__submit,
input.webform-button--submit,
.search-form__submit.button,
.webform-button--submit.button {
	background: var(--wo-btn-red) !important;
	border-color: var(--wo-btn-red) !important;
	color: #ffffff !important;
}

input.search-form__submit:hover,
input.search-form__submit:focus,
input.webform-button--submit:hover,
input.webform-button--submit:focus,
.search-form__submit.button:hover,
.search-form__submit.button:focus,
.webform-button--submit.button:hover,
.webform-button--submit.button:focus {
	background: var(--wo-btn-red-hover) !important;
	border-color: var(--wo-btn-red-hover) !important;
	color: #ffffff !important;
}

.wo-section {
	padding: 70px 0;
}

.wo-section-dark {
	color: var(--wo-white);
	background: linear-gradient(135deg, #003e58 0%, #002e45 100%);
}

.wo-section-dark h2,
.wo-section-dark h3,
.wo-section-dark p,
.wo-section-dark li,
.wo-section-dark a {
	color: var(--wo-white);
}

.wo-heading-wrap {
	margin-bottom: 30px;
}

.wo-heading-wrap h2 {
	margin-bottom: 10px;
	font-size: clamp(32px, 4.2vw, 48px);
	line-height: 1;
}

.wo-heading-wrap p {
	max-width: 860px;
	color: var(--wo-muted);
	font-size: 20px;
}

.wo-section-dark .wo-heading-wrap p {
	color: rgba(255, 255, 255, 0.86);
}

.wo-grid {
	display: grid;
	gap: 20px;
}

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

.wo-grid-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wo-grid-4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.wo-card {
	height: 100%;
	padding: 24px;
	border: 1px solid var(--wo-line);
	border-radius: 18px;
	background: var(--wo-white);
	box-shadow: 0 4px 18px rgba(8, 42, 29, 0.06);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.wo-card:hover,
.wo-card:focus-within {
	border-color: #b6cdc0;
	box-shadow: 0 14px 28px rgba(8, 42, 29, 0.1);
	transform: translateY(-3px);
}

.wo-card h3 {
	margin-bottom: 10px;
	font-size: 28px;
	line-height: 1.05;
}

.wo-card p {
	margin-bottom: 14px;
	color: var(--wo-muted);
	font-size: 18px;
}

.wo-link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--wo-primary-strong);
	font-weight: 700;
}

.wo-link-arrow::after {
	content: "\f061";
	font-family: "Font Awesome 6 Free";
	font-size: 13px;
	font-weight: 900;
}

.wo-stats {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.wo-stat {
	padding: 22px 18px;
	border-radius: 16px;
	text-align: center;
	background: rgba(255, 255, 255, 0.11);
	backdrop-filter: blur(1px);
}

.wo-stat-value {
	display: block;
	margin-bottom: 4px;
	color: var(--wo-accent);
	font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
	font-size: 42px;
	line-height: 1;
}

.wo-stat-label {
	display: block;
	color: rgba(255, 255, 255, 0.9);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.wo-cta-band {
	padding: 34px;
	border-radius: 20px;
	background:
		linear-gradient(90deg, rgba(255, 209, 73, 0.94) 0%, rgba(255, 226, 133, 0.96) 100%);
}

.wo-cta-band h3 {
	margin-bottom: 8px;
	font-size: 32px;
}

.wo-cta-band p {
	margin-bottom: 0;
	color: #2d3a35;
	font-size: 18px;
}

.wo-list-clean {
	margin: 0;
	padding: 0;
	list-style: none;
}

.wo-list-clean li {
	position: relative;
	margin-bottom: 12px;
	padding-left: 26px;
}

.wo-list-clean li::before {
	content: "\f00c";
	position: absolute;
	top: 0;
	left: 0;
	color: var(--wo-primary);
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
}

.wo-services-reference .wo-hero .container::before {
	display: none;
}

.wo-services-reference .wo-kicker {
	margin-bottom: 10px;
	font-size: 14px;
	letter-spacing: 0.06em;
}

.wo-services-reference .wo-hero h1 {
	margin-bottom: 12px;
}

.wo-services-subtitle {
	max-width: 980px;
	margin: 0;
	font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
	font-size: clamp(28px, 3.3vw, 40px);
	line-height: 1.05;
	text-transform: none;
	color: #ffffff;
}

.wo-services-reference-section {
	padding-top: 58px;
	padding-bottom: 58px;
	background: linear-gradient(180deg, #f7faf8 0%, #edf4f0 100%);
}

.wo-services-ref-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
	align-items: stretch;
}

.wo-services-ref-card {
	padding: 24px;
	border: 1px solid #d4e2db;
	border-radius: 16px;
	background: #ffffff;
	box-shadow: 0 8px 22px rgba(10, 42, 31, 0.08);
}

.wo-services-ref-card h3 {
	margin: 0 0 10px;
	font-size: clamp(24px, 2.3vw, 34px);
	line-height: 1.05;
	color: #003e58;
}

.wo-services-ref-card p {
	margin: 0 0 14px;
	font-size: 17px;
	line-height: 1.62;
	color: #495f58;
}

.wo-services-ref-card .wo-list-clean {
	display: grid;
	gap: 6px;
}

.wo-services-ref-card .wo-list-clean li {
	margin: 0;
	padding-left: 24px;
	font-size: 16px;
	line-height: 1.45;
}

.wo-services-ref-card .wo-list-clean a {
	color: #135344;
	text-decoration: none;
	font-weight: 600;
}

.wo-services-ref-card .wo-list-clean a:hover,
.wo-services-ref-card .wo-list-clean a:focus {
	text-decoration: underline;
}

.wo-services-ref-card--full {
	grid-column: 1 / -1;
}

.wo-contact-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 22px;
}

.wo-contact-item {
	padding: 20px;
	border: 1px solid var(--wo-line);
	border-radius: 14px;
	background: #f8fbf9;
}

.wo-contact-item h4 {
	margin-bottom: 8px;
	color: var(--wo-primary-strong);
	font-size: 22px;
}

.wo-contact-page .wo-hero {
	padding-bottom: 62px;
}

.wo-contact-intro-section {
	padding-top: 58px;
	padding-bottom: 46px;
	background: linear-gradient(180deg, #ffffff 0%, #f5faf7 100%);
}

.wo-contact-intro-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 26px;
	align-items: stretch;
}

.wo-contact-intro-copy h2 {
	margin: 0 0 12px;
	font-size: clamp(38px, 4.5vw, 62px);
	line-height: 0.95;
	text-transform: none;
}

.wo-contact-intro-copy p {
	margin-bottom: 12px;
	font-size: 18px;
	line-height: 1.62;
	color: #445d56;
}

.wo-contact-intro-media {
	position: relative;
	overflow: hidden;
	border: 1px solid #d0ddd7;
	border-radius: 20px;
	box-shadow: 0 16px 34px rgba(9, 37, 28, 0.14);
	background: #e6efe9;
}

.wo-contact-intro-media img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 340px;
	object-fit: cover;
	object-position: center;
}

.wo-contact-connect {
	padding-top: 12px;
	padding-bottom: 34px;
	background: #f5faf7;
}

.wo-contact-connect-grid {
	display: block;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	align-items: start;
}

/* Keep the request form directly under the request copy block even without JS reordering. */
.wo-contact-connect-grid .clearfix.widget.gsc-block-drupal {
	display: block;
	/* flex-direction: column;
	gap: 18px; */
}

.wo-contact-connect-grid .wo-contact-request-copy {
	order: 1;
}

.wo-contact-connect-grid .wo-contact-request-copy + #block-westernoil-contact-request-webform,
.wo-contact-connect-grid .wo-contact-request-copy + .clearfix.widget.gsc-block-drupal #block-westernoil-contact-request-webform,
.wo-contact-connect-grid #block-westernoil-contact-request-webform {
	order: 2;
	max-width: none;
	margin: 0;
	padding: 0;
	background: transparent;
}

.wo-contact-request-copy > #block-westernoil-contact-request-webform.wo-contact-request-form-inline {
	max-width: none;
	margin: 18px 0 0;
	padding: 0;
	background: transparent;
}

.wo-contact-cards {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
}

.wo-contact-card {
	padding: 18px 18px 16px;
	border: 1px solid #cfddd6;
	border-radius: 14px;
	background: #ffffff;
	box-shadow: 0 8px 22px rgba(9, 37, 28, 0.08);
}

.wo-contact-card h3 {
	margin: 0 0 6px;
	font-size: 24px;
	line-height: 1;
	text-transform: uppercase;
}

.wo-contact-card h3 a,
.wo-contact-card p a {
	color: #004e67;
	text-decoration: none;
}

.wo-contact-card h3 a:hover,
.wo-contact-card h3 a:focus,
.wo-contact-card p a:hover,
.wo-contact-card p a:focus {
	color: #00506b;
	text-decoration: underline;
}

.wo-contact-card p {
	margin: 0;
	font-size: 16px;
	line-height: 1.52;
	color: #4b655d;
}

.wo-contact-card-emergency {
	border-color: #d7c06d;
	background: linear-gradient(140deg, #fff7d8 0%, #ffefbb 100%);
}

.wo-contact-card-emergency h3 a,
.wo-contact-card-emergency p a,
.wo-contact-card-emergency p {
	color: #3a3422;
}

.wo-contact-request-copy {
	max-width: 655px;
	margin-left: auto;
	padding: 24px;
	border: 1px solid #c8d9d1;
	border-radius: 16px;
	background:
		radial-gradient(circle at 86% 12%, rgba(255, 209, 73, 0.24), transparent 40%),
		linear-gradient(145deg, #00617a 0%, #004761 100%);
	box-shadow: 0 16px 34px rgba(9, 37, 28, 0.18);
}

.wo-contact-request-copy h3 {
	margin: 0 0 10px;
	font-size: clamp(32px, 4vw, 46px);
	line-height: 0.95;
	color: #ffffff;
	text-transform: uppercase;
}

.wo-contact-request-copy p {
	margin: 0;
	font-size: 18px;
	line-height: 1.62;
	color: rgba(255, 255, 255, 0.9);
}

.wo-contact-map-section {
	padding: 10px 0 0;
	background: #f5faf7;
}

.wo-contact-map-section iframe {
	display: block;
	width: 100%;
	height: 430px;
	border: 0;
}

.wo-tagline {
	margin-bottom: 20px;
	color: rgba(255, 255, 255, 0.8);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.wo-page-footer-note {
	margin-top: 26px;
	color: #5e7167;
	font-size: 15px;
}

.wo-area-intro {
	max-width: 920px;
	margin: 0 auto 36px;
	text-align: center;
}

.wo-about-page .wo-section-soft .container {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 28px;
	align-items: start;
}

.wo-about-page .wo-section-soft .wo-heading-wrap {
	margin-bottom: 0;
}

.wo-about-page .wo-section-soft .wo-heading-wrap p {
	max-width: none;
}

.wo-story-image-wrap {
	margin: 26px 0 0;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 14px 28px rgba(8, 42, 29, 0.12);
}

.wo-about-page .wo-section-soft .wo-story-image-wrap {
	margin: 0;
}

.wo-story-image-wrap img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}

.wo-about-page .wo-about-overline {
	margin-bottom: 10px;
	color: #5f7268;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.wo-about-route .wo-about-story-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px;
	align-items: stretch;
}

.wo-about-route .wo-about-story-row > .wo-about-story-title-col {
	grid-column: 1 / -1;
	width: 100%;
	max-width: none;
	flex: 0 0 100%;
}

.wo-about-route .wo-about-story-row > .wo-about-story-copy-col,
.wo-about-route .wo-about-story-row > .wo-about-story-media-col {
	width: 100%;
	max-width: none;
	flex: 0 0 auto;
}

.wo-about-route .wo-about-story-copy-col .wo-page {
	height: 100%;
}

.wo-about-route .wo-about-story-copy-col .wo-section.wo-section-soft {
	height: 100%;
	padding: 0;
	border-radius: 18px;
	background: linear-gradient(180deg, #f1f7f4 0%, #e8f0ec 100%);
	overflow: hidden;
}

.wo-about-route .wo-about-story-copy-col .wo-section.wo-section-soft .container {
	max-width: none;
	width: 100%;
	padding: 34px 30px;
	display: block;
}

.wo-about-route .wo-about-story-copy-col .wo-heading-wrap {
	margin: 0;
}

.wo-about-route .wo-about-story-media-col .column-content-inner,
.wo-about-route .wo-about-story-media-col .column-content,
.wo-about-route .wo-about-story-media-col .column-content-item {
	height: 100%;
}

.wo-about-route .wo-about-story-media-col img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 320px;
	object-fit: cover;
	border-radius: 18px;
	box-shadow: 0 14px 28px rgba(8, 42, 29, 0.12);
}

/* CSS-only fallback for About Us story alignment when JS classes are not present. */
body.path-node .gbb-row-wrapper.section.row-first-level .row.row-wrapper:has(img[src*="aboutus.jpg"]) {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px;
	align-items: stretch;
}

body.path-node .gbb-row-wrapper.section.row-first-level .row.row-wrapper:has(img[src*="aboutus.jpg"]) > .gsc-column.col-xl-12 {
	grid-column: 1 / -1;
	width: 100%;
	max-width: none;
	flex: 0 0 100%;
}

body.path-node .gbb-row-wrapper.section.row-first-level .row.row-wrapper:has(img[src*="aboutus.jpg"]) > .gsc-column.col-xl-6 {
	width: 100%;
	max-width: none;
	flex: 0 0 auto;
}

body.path-node .gbb-row-wrapper.section.row-first-level .row.row-wrapper:has(img[src*="aboutus.jpg"]) > .gsc-column:nth-child(2) .wo-page,
body.path-node .gbb-row-wrapper.section.row-first-level .row.row-wrapper:has(img[src*="aboutus.jpg"]) > .gsc-column:nth-child(2) .column-inner,
body.path-node .gbb-row-wrapper.section.row-first-level .row.row-wrapper:has(img[src*="aboutus.jpg"]) > .gsc-column:nth-child(2) .column-content,
body.path-node .gbb-row-wrapper.section.row-first-level .row.row-wrapper:has(img[src*="aboutus.jpg"]) > .gsc-column:nth-child(2) .column-content-inner {
	height: 100%;
}

body.path-node .gbb-row-wrapper.section.row-first-level .row.row-wrapper:has(img[src*="aboutus.jpg"]) > .gsc-column:nth-child(2) .wo-section.wo-section-soft {
	height: 100%;
	padding: 0;
	border-radius: 18px;
	background: linear-gradient(180deg, #f1f7f4 0%, #e8f0ec 100%);
	overflow: hidden;
}

body.path-node .gbb-row-wrapper.section.row-first-level .row.row-wrapper:has(img[src*="aboutus.jpg"]) > .gsc-column:nth-child(2) .wo-section.wo-section-soft .container {
	max-width: none;
	width: 100%;
	height: 100%;
	padding: 34px 30px;
	display: block;
}

body.path-node .gbb-row-wrapper.section.row-first-level .row.row-wrapper:has(img[src*="aboutus.jpg"]) > .gsc-column:nth-child(3) .column-content-inner,
body.path-node .gbb-row-wrapper.section.row-first-level .row.row-wrapper:has(img[src*="aboutus.jpg"]) > .gsc-column:nth-child(3) .column-content,
body.path-node .gbb-row-wrapper.section.row-first-level .row.row-wrapper:has(img[src*="aboutus.jpg"]) > .gsc-column:nth-child(3) .column-content-item {
	height: 100%;
}

body.path-node .gbb-row-wrapper.section.row-first-level .row.row-wrapper:has(img[src*="aboutus.jpg"]) img[src*="aboutus.jpg"] {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 320px;
	object-fit: cover;
	border-radius: 18px;
	box-shadow: 0 14px 28px rgba(8, 42, 29, 0.12);
}

@media (max-width: 991px) {
	body.path-node .gbb-row-wrapper.section.row-first-level .row.row-wrapper:has(img[src*="aboutus.jpg"]) {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	body.path-node .gbb-row-wrapper.section.row-first-level .row.row-wrapper:has(img[src*="aboutus.jpg"]) > .gsc-column:nth-child(2) .wo-section.wo-section-soft .container {
		padding: 24px 20px;
	}

	body.path-node .gbb-row-wrapper.section.row-first-level .row.row-wrapper:has(img[src*="aboutus.jpg"]) img[src*="aboutus.jpg"] {
		height: auto;
		min-height: 0;
	}
}


.wo-about-page [data-wo-about-section].wo-about-admin-source {
	display: none;
}

.wo-about-values {
	background: #ffffff;
}

.wo-about-values .wo-grid-2 {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.wo-about-values .wo-grid-2 > .wo-card:nth-child(3) {
	grid-column: 1 / -1;
}

.wo-about-values .wo-card h3 {
	font-size: 24px;
}

.wo-about-values .wo-card p {
	margin-bottom: 0;
	font-size: 17px;
	line-height: 1.55;
}

.wo-about-safety .wo-card {
	border-color: rgba(255, 255, 255, 0.22);
	background: rgba(255, 255, 255, 0.08);
	box-shadow: none;
	backdrop-filter: blur(1px);
}

.wo-about-safety .wo-grid-2 {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.wo-about-safety .wo-card h3,
.wo-about-safety .wo-card p {
	color: #ffffff;
}

.wo-about-safety .wo-card p {
	margin-bottom: 0;
	font-size: 16px;
	line-height: 1.55;
	opacity: 0.95;
}

.wo-about-certifications {
	padding-top: 62px;
	padding-bottom: 62px;
}

.wo-about-cert-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.wo-about-cert-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	padding: 22px 18px;
	border: 1px solid #cddcd5;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 8px 18px rgba(10, 42, 31, 0.06);
	cursor: pointer;
	text-align: center;
	transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.wo-about-cert-item:hover,
.wo-about-cert-item:focus-within,
.wo-about-cert-item.wo-about-cert-clickable:focus {
	border-color: #8fb9ab;
	box-shadow: 0 14px 26px rgba(10, 42, 31, 0.14);
	transform: translateY(-2px);
}

.wo-about-cert-item.wo-about-cert-clickable:focus {
	outline: 2px solid rgba(15, 91, 64, 0.35);
	outline-offset: 3px;
}

.wo-about-cert-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	aspect-ratio: 1 / 1;
	padding: 14px;
	border: 1px solid #d6e2dc;
	border-radius: 12px;
	background: #f8fbf9;
}

.wo-about-cert-logo:hover,
.wo-about-cert-logo:focus {
	border-color: #9bbdaf;
	text-decoration: none;
}

.wo-about-cert-logo img {
	display: block;
	max-width: 100%;
	max-height: 128px;
	width: auto;
	height: auto;
	object-fit: contain;
}

.wo-about-cert-item h3 {
	margin-bottom: 4px;
	color: #005973;
	font-size: 24px;
	line-height: 1;
	letter-spacing: 0.03em;
}

.wo-about-cert-item p {
	margin: 0;
	color: #4f645d;
	font-size: 14px;
	line-height: 1.45;
}

.wo-about-cta {
	padding: 56px 0;
	color: #fff;
	text-align: center;
	background: linear-gradient(135deg, #003f58 0%, #005f79 60%, #0a6780 100%);
}

.wo-about-cta p {
	max-width: 820px;
	margin: 0 auto 10px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 18px;
}

.wo-about-cta h3 {
	margin-bottom: 18px;
	color: #fff;
	font-size: clamp(30px, 3.7vw, 46px);
	line-height: 1.04;
	text-transform: uppercase;
}

.wo-about-cta .wo-btn {
	min-width: 170px;
	text-align: center;
	font-size: 20px;
}

.wo-area-intro p {
	margin: 0 auto;
	font-size: 20px;
	color: #435c53;
}

.wo-area-map-shell {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
	margin-top: 24px;
	margin-bottom: 22px;
}

.wo-area-map-panel {
	position: relative;
	border-radius: 18px;
	overflow: hidden;
	border: 1px solid #d6e2dc;
	box-shadow: 0 12px 30px rgba(11, 46, 33, 0.12);
	background: #e7efe9;
}

.wo-area-map-figure {
	position: relative;
	margin: 0;
}

.wo-area-map-panel img {
	display: block;
	width: 100%;
	height: 100%;
	max-height: 420px;
	object-fit: contain;
	object-position: center center;
	background: #f2f7f4;
}

.wo-area-map-badge {
	position: absolute;
	left: 14px;
	bottom: 14px;
	padding: 7px 12px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 999px;
	color: #ffffff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	background: #dc3545;
	backdrop-filter: blur(2px);
}

.wo-area-pin {
	position: absolute;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	margin-top: -17px;
	margin-left: -17px;
	border: 2px solid #ffffff;
	border-radius: 50%;
	background: #00506b;
	color: transparent;
	font-size: 0;
	line-height: 0;
	text-decoration: none;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
	transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
	z-index: 2;
}

.wo-area-pin::before {
	content: "\f57d";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	font-size: 14px;
	line-height: 1;
	color: #ffffff;
}

.wo-area-pin::after {
	content: "";
	position: absolute;
	inset: -6px;
	border: 2px solid rgba(0, 80, 107, 0.2);
	border-radius: 50%;
}

.wo-area-pin:hover,
.wo-area-pin:focus {
	transform: translateY(-2px);
	background: #0a4631;
	box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24);
	text-decoration: none;
}

.wo-area-pin-ri { left: 92.6%; top: 30.6%; }
.wo-area-pin-ma { left: 91.7%; top: 27.0%; }
.wo-area-pin-ct { left: 90.2%; top: 29.7%; }
.wo-area-pin-ny { left: 83.4%; top: 28.7%; }
.wo-area-pin-vt { left: 89.7%; top: 21.9%; }
.wo-area-pin-nh { left: 92.3%; top: 22.0%; }
.wo-area-pin-me { left: 95.4%; top: 17.0%; }

.wo-area-map-list {
	display: grid;
	align-content: start;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
	padding: 16px;
	border: 1px solid #d6e2dc;
	border-radius: 18px;
	background: #ffffff;
	box-shadow: 0 10px 22px rgba(11, 46, 33, 0.08);
}

.wo-area-map-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 12px;
	border: 1px solid #cddcd4;
	border-radius: 12px;
	color: #184239;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	text-decoration: none;
	background: #f7fbf9;
	transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.wo-area-map-link::before {
	content: "\f57d";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	font-size: 12px;
	line-height: 1;
	margin-right: 8px;
	color: #00506b;
	flex-shrink: 0;
}

.wo-area-map-link:hover,
.wo-area-map-link:focus {
	transform: translateY(-1px);
	border-color: #97b8aa;
	background: #eef6f1;
	color: #133b33;
	text-decoration: none;
}

.wo-state-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin-top: 24px;
}

.wo-state-card {
	position: relative;
	padding-left: 114px;
	background: #ffffff;
}

.wo-state-image {
	position: absolute;
	left: 22px;
	top: 22px;
	width: 68px;
	height: 68px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: #f2f7f4;
	border: 1px solid #d5e2db;
	padding: 6px;
	color: #1777c8;
	font-size: 0;
}

.wo-state-card[id^="state-"] .wo-state-image {
	padding: 10px;
	border-radius: 50%;
	border: 0;
	background: #dc3545;
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.03);
}

.wo-state-card:nth-child(even)[id^="state-"] .wo-state-image {
	background: #dc3545;
	color: #ffffff;
	box-shadow: 0 8px 16px rgba(23, 119, 200, 0.28);
}

.wo-state-image::before {
	content: "\f57d";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	font-size: 24px;
	line-height: 1;
	color: #ffffff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	left: 50%;
	top: 50%;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #00506b;
	transform: translate(-50%, -50%);
	box-shadow: 0 6px 12px rgba(0, 80, 107, 0.28);
}

.wo-state-card#state-rhode-island {
	--wo-state-mask: url("../custom_images/state-shapes/rhode-island.svg");
}

.wo-state-card#state-massachusetts {
	--wo-state-mask: url("../custom_images/state-shapes/massachusetts.svg");
}

.wo-state-card#state-connecticut {
	--wo-state-mask: url("../custom_images/state-shapes/connecticut.svg");
}

.wo-state-card#state-new-york {
	--wo-state-mask: url("../custom_images/state-shapes/new-york.svg");
}

.wo-state-card#state-vermont {
	--wo-state-mask: url("../custom_images/state-shapes/vermont.svg");
}

.wo-state-card#state-new-hampshire {
	--wo-state-mask: url("../custom_images/state-shapes/new-hampshire.svg");
}

.wo-state-card#state-maine {
	--wo-state-mask: url("../custom_images/state-shapes/maine.svg");
}

.wo-state-card#state-rhode-island .wo-state-image::before,
.wo-state-card#state-massachusetts .wo-state-image::before,
.wo-state-card#state-connecticut .wo-state-image::before,
.wo-state-card#state-new-york .wo-state-image::before,
.wo-state-card#state-vermont .wo-state-image::before,
.wo-state-card#state-new-hampshire .wo-state-image::before,
.wo-state-card#state-maine .wo-state-image::before {
	content: "";
	position: static;
	width: 100%;
	height: 100%;
	border-radius: 0;
	transform: none;
	background: currentColor;
	box-shadow: none;
	-webkit-mask-image: var(--wo-state-mask);
	mask-image: var(--wo-state-mask);
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
}

.wo-state-card[id] {
	scroll-margin-top: 90px;
}

.wo-state-card h3 {
	margin-bottom: 8px;
	font-size: 30px;
	line-height: 1.02;
}

.wo-state-card p {
	margin-bottom: 0;
	font-size: 17px;
	line-height: 1.5;
}

.wo-request-panel {
	max-width: 1281px;
	margin: 0 auto;
	margin-top: 34px;
	padding: 34px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 22px;
	background: linear-gradient(130deg, #004f68 0%, #0a2d2f 100%);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.wo-request-panel h3 {
	margin-bottom: 10px;
	font-size: clamp(34px, 4vw, 44px);
	line-height: 0.98;
}

.wo-request-panel p {
	max-width: 760px;
	margin-bottom: 18px;
	font-size: 19px;
	color: rgba(255, 255, 255, 0.88);
}

.wo-request-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.wo-products-page .wo-hero .container::before {
	content: "Products For Purchase";
}

.wo-products-intro h1 {
	max-width: 980px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	font-size: clamp(34px, 4.6vw, 56px);
	line-height: 0.98;
}

.wo-products-catalog {
	padding-top: 56px;
	padding-bottom: 58px;
}

.wo-products-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
}

.wo-product-tile {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: calc(25% - 12px);
	min-height: 140px;
	padding: 18px 14px;
	border: 1px solid #d2dfd8;
	border-radius: 16px;
	color: #1a3d36;
	text-align: center;
	text-decoration: none;
	background: #ffffff;
	box-shadow: 0 8px 20px rgba(10, 43, 30, 0.08);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.wo-product-tile::before {
	content: "\f055";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	margin-bottom: 10px;
	border-radius: 50%;
	color: #dc3545;
	font-family: "Font Awesome 6 Free";
	font-size: 22px;
	font-weight: 900;
	line-height: 1;
	background: #ecf4ef;
	border: 1px solid #c8ddd2;
}

.wo-product-tile span {
	font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
	font-size: 28px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.wo-product-tile:hover,
.wo-product-tile:focus {
	transform: translateY(-2px);
	border-color: #adc8bc;
	box-shadow: 0 14px 28px rgba(10, 43, 30, 0.12);
	color: #123a32;
	text-decoration: none;
}

.wo-products-quote {
	padding-top: 58px;
	padding-bottom: 64px;
	color: #ffffff;
	background: linear-gradient(130deg, #004a63 0%, #00344c 100%);
}

.wo-products-quote .wo-products-kicker {
	margin: 0 0 10px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	text-align: center;
}

.wo-products-quote h2 {
	margin: 0 0 12px;
	color: #ffffff;
	text-align: center;
	font-size: clamp(34px, 4.4vw, 48px);
	line-height: 1;
}

.wo-products-quote p {
	max-width: 760px;
	margin: 0 auto 20px;
	text-align: center;
	font-size: 18px;
	color: rgba(255, 255, 255, 0.88);
	line-height: 1.6;
}

.wo-products-quote-actions {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
}

.wo-employment-page .wo-employment-hero {
	padding-top: 56px;
	padding-bottom: 54px;
	background:
		radial-gradient(circle at 84% 16%, rgba(255, 209, 73, 0.22), transparent 42%),
		linear-gradient(180deg, #ffffff 0%, #f3f9f6 100%);
}

.wo-employment-hero-grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 24px;
	align-items: center;
}

.wo-employment-hero-copy h1 {
	margin-bottom: 12px;
	color: #153a31;
	font-size: clamp(40px, 5vw, 72px);
	line-height: 0.92;
	text-transform: uppercase;
}

.wo-employment-hero-copy .wo-kicker {
	color: #2f6152;
}

.wo-employment-hero-copy p {
	margin-bottom: 10px;
	font-size: 18px;
	line-height: 1.62;
	color: #48635a;
}

.wo-employment-hero-copy .wo-actions {
	margin-top: 18px;
}

.wo-employment-hero .wo-btn-secondary {
	color: #ffffff;
	border-color: var(--wo-btn-red);
	background: var(--wo-btn-red);
}

.wo-employment-hero .wo-btn-secondary:hover,
.wo-employment-hero .wo-btn-secondary:focus {
	color: #ffffff;
	border-color: var(--wo-btn-red-hover);
	background: var(--wo-btn-red-hover);
}

.wo-employment-hero-media {
	margin: 0;
	overflow: hidden;
	border: 1px solid #d3e0da;
	border-radius: 22px;
	box-shadow: 0 18px 36px rgba(9, 38, 28, 0.16);
	background: #e8efe9;
}

.wo-employment-hero-media img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 360px;
	object-fit: cover;
	object-position: center;
}

.wo-employment-values {
	padding-top: 56px;
	padding-bottom: 58px;
	background: #f4faf7;
}

.wo-employment-values-intro {
	max-width: 980px;
	margin: 0 auto 24px;
	text-align: center;
}

.wo-employment-values-intro h2 {
	margin: 0 0 10px;
	font-size: clamp(34px, 4.6vw, 52px);
	line-height: 0.96;
	text-transform: uppercase;
}

.wo-employment-values-intro p {
	margin: 0;
	font-size: 18px;
	line-height: 1.6;
	color: #4d685f;
}

.wo-employment-value-card {
	padding: 26px;
	border-color: #cfddd6;
	box-shadow: 0 10px 24px rgba(9, 38, 28, 0.08);
	background:
		radial-gradient(circle at 88% 12%, rgba(255, 209, 73, 0.15), transparent 38%),
		#ffffff;
}

.wo-employment-value-card h3 {
	margin-bottom: 10px;
	font-size: 34px;
	line-height: 0.95;
	text-transform: uppercase;
}

.wo-employment-value-card p {
	margin: 0;
	font-size: 17px;
	line-height: 1.58;
	color: #4a635c;
}

.wo-employment-apply {
	padding-top: 30px;
	padding-bottom: 12px;
	background: #f4faf7;
}

.wo-employment-apply-intro {
	max-width: 1281px;
	margin: 0 auto;
	padding: 28px;
	border: 1px solid #cbdad3;
	border-radius: 18px;
	background:
		radial-gradient(circle at 8% 10%, rgba(255, 209, 73, 0.16), transparent 44%),
		#ffffff;
	box-shadow: 0 14px 30px rgba(9, 37, 28, 0.1);
	text-align: center;
}

.wo-employment-apply-intro h2 {
	margin: 0 0 10px;
	font-size: clamp(34px, 4.4vw, 48px);
	line-height: 0.96;
	text-transform: uppercase;
}

.wo-employment-apply-intro p {
	margin: 0;
	font-size: 18px;
	line-height: 1.62;
	color: #4a655d;
}

.wo-home-feature-strip {
	padding: 30px 0 18px;
	background: linear-gradient(180deg, #f1f7f4 0%, #eef6f2 100%);
	border-top: 1px solid #e1ece6;
}

.wo-home-feature-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.wo-home-feature-card {
	--wo-feature-icon: "\f05a";
	--wo-feature-icon-bg: rgba(255, 255, 255, 0.18);
	--wo-feature-icon-color: #ffffff;
	display: block;
	position: relative;
	overflow: hidden;
	padding: 22px 20px 20px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 14px;
	color: #ffffff;
	text-decoration: none;
	background: #006dcc;
	box-shadow: 0 8px 22px rgba(8, 39, 67, 0.2);
	transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.wo-home-feature-card::before {
	content: var(--wo-feature-icon);
	position: absolute;
	top: 14px;
	right: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	font-family: "Font Awesome 6 Free";
	font-size: 15px;
	font-weight: 900;
	color: var(--wo-feature-icon-color);
	background: var(--wo-feature-icon-bg);
	border: 1px solid rgba(255, 255, 255, 0.55);
	transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.wo-home-feature-card::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 14px;
	pointer-events: none;
	background: linear-gradient(165deg, rgba(255, 255, 255, 0.06), transparent 42%);
}

.wo-home-feature-card:hover,
.wo-home-feature-card:focus {
	transform: translateY(-4px);
	border-color: rgba(255, 255, 255, 0.52);
	box-shadow: 0 18px 34px rgba(8, 39, 67, 0.28);
	color: #ffffff;
	text-decoration: none;
}

.wo-home-feature-card:hover::before,
.wo-home-feature-card:focus::before {
	transform: scale(1.08);
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.wo-home-feature-card h3,
.wo-home-feature-card .wo-home-feature-title {
	display: block;
	margin: 0 0 8px;
	padding-right: 52px;
	font-size: 28px;
	line-height: 1;
	color: #ffffff;
	font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.wo-home-feature-card p {
	margin: 0;
	font-size: 16px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.9);
}

.wo-home-feature-card strong,
.wo-home-feature-card .wo-home-feature-phone {
	display: inline-block;
	margin-top: 10px;
	font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
	font-size: 28px;
	line-height: 1;
	letter-spacing: 0.02em;
	color: #ffffff;
	text-transform: uppercase;
}

.wo-home-feature-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 10px;
	padding: 4px 9px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #ffffff;
	background: rgba(255, 255, 255, 0.18);
}

.wo-home-feature-eyebrow::before {
	content: var(--wo-feature-icon);
	font-family: "Font Awesome 6 Free";
	font-size: 10px;
	font-weight: 900;
	line-height: 1;
}

.wo-home-feature-grid .wo-home-feature-card:nth-child(2) {
	--wo-feature-icon: "\f06c";
	--wo-feature-icon-bg: rgba(255, 255, 255, 0.18);
	--wo-feature-icon-color: #ffffff;
}

.wo-home-feature-grid .wo-home-feature-card:nth-child(3) {
	--wo-feature-icon: "\f48b";
	--wo-feature-icon-bg: rgba(255, 255, 255, 0.18);
	--wo-feature-icon-color: #ffffff;
}

.wo-home-feature-emergency {
	--wo-feature-icon: "\f071";
	--wo-feature-icon-bg: rgba(255, 255, 255, 0.16);
	--wo-feature-icon-color: #ffffff;
	border-color: rgba(255, 255, 255, 0.3);
	background: #cc0007;
}

.wo-home-feature-emergency .wo-home-feature-eyebrow {
	color: #ffffff;
	background: rgba(255, 255, 255, 0.18);
}

.wo-home-feature-emergency p,
.wo-home-feature-emergency h3,
.wo-home-feature-emergency strong {
	color: #ffffff;
}

/* Builder-save fallback: keep 3 columns even when card HTML is split into sibling nodes. */
.wo-home-feature-grid:has(> h3) {
	grid-template-rows: auto auto auto;
	column-gap: 14px;
	row-gap: 0;
}

.wo-home-feature-grid:has(> h3) > :nth-child(1) {
	grid-column: 1;
	grid-row: 1;
	border-bottom: 0;
	border-radius: 14px 14px 0 0;
	padding-bottom: 8px;
	box-shadow: none;
}

.wo-home-feature-grid:has(> h3) > :nth-child(1)::after {
	display: none;
}

.wo-home-feature-grid:has(> h3) > :nth-child(2) {
	grid-column: 1;
	grid-row: 2;
	display: block;
	margin: 0;
	padding: 0 20px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-top: 0;
	border-bottom: 0;
	color: #ffffff;
	background: #cc0007;
	font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
	font-size: 28px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.wo-home-feature-grid:has(> h3) > :nth-child(3) {
	grid-column: 1;
	grid-row: 3;
	border-top: 0;
	border-radius: 0 0 14px 14px;
	padding-top: 6px;
	box-shadow: 0 14px 24px -12px rgba(8, 39, 67, 0.55);
}

.wo-home-feature-grid:has(> h3) > :nth-child(3)::before {
	display: none;
}

.wo-home-feature-grid:has(> h3) > :nth-child(3)::after {
	display: none;
}

.wo-home-feature-grid:has(> h3) > :nth-child(4) {
	--wo-feature-icon: "\f06c";
	--wo-feature-icon-bg: rgba(255, 255, 255, 0.18);
	--wo-feature-icon-color: #ffffff;
	grid-column: 2;
	grid-row: 1;
	border-bottom: 0;
	border-radius: 14px 14px 0 0;
	padding-bottom: 8px;
	box-shadow: none;
}

.wo-home-feature-grid:has(> h3) > :nth-child(4)::after {
	display: none;
}

.wo-home-feature-grid:has(> h3) > :nth-child(5) {
	grid-column: 2;
	grid-row: 2 / span 2;
	display: block;
	margin: 0;
	padding: 8px 20px 20px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-top: 0;
	border-radius: 0 0 14px 14px;
	color: #ffffff;
	background: #006dcc;
	font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
	font-size: 28px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	box-shadow: 0 14px 24px -12px rgba(8, 39, 67, 0.55);
}

.wo-home-feature-grid:has(> h3) > :nth-child(5)::after {
	display: none;
}

.wo-home-feature-grid:has(> h3) > :nth-child(6) {
	--wo-feature-icon: "\f48b";
	--wo-feature-icon-bg: rgba(255, 255, 255, 0.18);
	--wo-feature-icon-color: #ffffff;
	grid-column: 3;
	grid-row: 1;
	border-bottom: 0;
	border-radius: 14px 14px 0 0;
	padding-bottom: 8px;
	box-shadow: none;
}

.wo-home-feature-grid:has(> h3) > :nth-child(6)::after {
	display: none;
}

.wo-home-feature-grid:has(> h3) > :nth-child(7) {
	grid-column: 3;
	grid-row: 2 / span 2;
	display: block;
	margin: 0;
	padding: 8px 20px 20px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-top: 0;
	border-radius: 0 0 14px 14px;
	color: #ffffff;
	background: #006dcc;
	font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
	font-size: 28px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	box-shadow: 0 14px 24px -12px rgba(8, 39, 67, 0.55);
}

.wo-home-feature-grid:has(> h3) > :nth-child(7)::after {
	display: none;
}

.wo-home-feature-grid:has(> h3) > .wo-home-feature-card:hover,
.wo-home-feature-grid:has(> h3) > .wo-home-feature-card:focus {
	transform: none;
	box-shadow: none;
}

.wo-home-services-intro {
	padding: 24px 0 38px;
	background: #ffffff;
	border-bottom: 1px solid #e4ede8;
}

.wo-kicker-dark {
	color: #2f6152;
}

.wo-home-services-intro h2 {
	margin: 0 0 12px;
	font-size: clamp(34px, 4vw, 52px);
	line-height: 0.96;
}

.wo-home-services-intro p {
	max-width: 980px;
	margin: 0;
	font-size: 19px;
	line-height: 1.55;
	color: #526963;
}

.wo-home-about {
	background: linear-gradient(130deg, #f8fcfa 0%, #edf5f1 100%);
}

.wo-home-about-grid {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 22px;
}

.wo-home-about-copy h2 {
	margin: 0 0 14px;
	font-size: clamp(38px, 4.4vw, 58px);
	line-height: 0.95;
}

.wo-home-about-copy p {
	margin-bottom: 12px;
	font-size: 18px;
	line-height: 1.6;
	color: #425b54;
}

.wo-home-about-copy .wo-btn-secondary {
	color: #ffffff;
	border-color: var(--wo-btn-red);
	background: var(--wo-btn-red);
}

.wo-home-about-copy .wo-btn-secondary:hover,
.wo-home-about-copy .wo-btn-secondary:focus {
	color: #ffffff;
	background: var(--wo-btn-red-hover);
}

.wo-home-about-media {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 24px;
	border: 1px solid #d0dfd8;
	border-radius: 18px;
	background:
		radial-gradient(circle at 82% 18%, rgba(255, 209, 73, 0.24), transparent 44%),
		linear-gradient(145deg, #00637b 0%, #00465f 58%, #00364d 100%);
	box-shadow: 0 14px 28px rgba(8, 34, 26, 0.16);
}

.wo-home-about-media::after {
	content: "";
	display: block;
	width: 100%;
	height: clamp(240px, 30vw, 360px);
	margin-top: 4px;
	border: 1px solid rgba(255, 255, 255, 0.32);
	border-radius: 14px;
	background:
		rgba(255, 255, 255, 0.08)
		url("/sites/default/files/Western-Oil-Service-Area-02.webp") center / contain no-repeat;
}

.wo-home-about-media p,
.wo-home-about-media li {
	color: rgba(255, 255, 255, 0.9);
	font-size: 16px;
}

.wo-home-about-media .wo-list-clean li::before {
	color: #ffd149;
}

.wo-home-about-badge {
	display: inline-block;
	margin-bottom: 10px;
	padding: 6px 11px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #173029;
	background: #ffd149;
}

.wo-home-metrics {
	padding: 18px 0 64px;
	background: #f4faf7;
}

.wo-stats-plain .wo-stat {
	border: 1px solid #cfddd6;
	background: #ffffff;
	box-shadow: 0 8px 22px rgba(8, 36, 27, 0.09);
}

.wo-stats-plain .wo-stat-value {
	color: #00506b;
	font-size: 44px;
}

.wo-stats-plain .wo-stat-label {
	color: #3c574f;
}

.wo-home-request {
	padding-top: 10px;
	padding-bottom: 72px;
	background: #f4faf7;
}

.wo-home-request .wo-cta-band {
	max-width: 1040px;
	margin: 0 auto;
	text-align: center;
}

.wo-home-request .wo-cta-band p:last-child {
	margin-top: 18px;
}

@media (max-width: 1199px) {
	.wo-stats {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.wo-grid-4 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.wo-about-cert-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 991px) {
	.wo-page .container {
		width: calc(100% - 26px) !important;
	}

	.wo-home-feature-grid,
	.wo-home-about-grid {
		grid-template-columns: 1fr;
	}

	.wo-home-feature-grid:has(> h3) {
		grid-template-rows: none;
		row-gap: 0;
	}

	.wo-home-feature-grid:has(> h3) > :nth-child(1),
	.wo-home-feature-grid:has(> h3) > :nth-child(2),
	.wo-home-feature-grid:has(> h3) > :nth-child(3),
	.wo-home-feature-grid:has(> h3) > :nth-child(4),
	.wo-home-feature-grid:has(> h3) > :nth-child(5),
	.wo-home-feature-grid:has(> h3) > :nth-child(6),
	.wo-home-feature-grid:has(> h3) > :nth-child(7) {
		grid-column: auto;
		grid-row: auto;
	}

	.wo-contact-intro-grid,
	.wo-contact-connect-grid,
	.wo-employment-hero-grid {
		grid-template-columns: 1fr;
	}

	.wo-contact-connect-grid .clearfix.widget.gsc-block-drupal {
		gap: 16px;
	}

	.wo-contact-request-copy > #block-westernoil-contact-request-webform.wo-contact-request-form-inline {
		margin-top: 16px;
	}

	.wo-contact-intro-media img {
		min-height: 260px;
	}

	.wo-product-tile {
		width: calc(50% - 10px);
	}

	.wo-home-about {
		padding: 58px 0;
	}

	.wo-home-metrics {
		padding-bottom: 48px;
	}

	.wo-home-request {
		padding-bottom: 54px;
	}

	#header .gva-navigation .gva_menu_main > li > a {
		padding: 14px 12px;
	}

	#header .topbar .container,
	.wo-utility-actions,
	.wo-trust-band .container {
		flex-direction: column;
		align-items: flex-start;
	}

	.wo-finder-grid {
		grid-template-columns: 1fr;
	}

	.wo-finder-btn {
		width: 100%;
	}

	.wo-hero {
		padding: 50px 0 44px;
	}

	.wo-hero h1 {
		font-size: clamp(34px, 9vw, 52px);
	}

	.wo-hero p,
	.wo-heading-wrap p {
		font-size: 18px;
	}

	.wo-grid-3,
	.wo-grid-2,
	.wo-contact-grid {
		grid-template-columns: 1fr;
	}

	.wo-services-ref-grid {
		grid-template-columns: 1fr;
	}

	.wo-services-ref-card--full {
		grid-column: auto;
	}

	.wo-about-page .wo-section-soft .container {
		display: block;
	}

	.wo-about-route .wo-about-story-row {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.wo-about-route .wo-about-story-copy-col .wo-section.wo-section-soft .container {
		padding: 24px 20px;
	}

	.wo-about-route .wo-about-story-media-col img {
		min-height: 240px;
	}

	body.path-node .gbb-row-wrapper.section.row-first-level .row.row-wrapper:has(img[src*="aboutus.jpg"]) {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	body.path-node .gbb-row-wrapper.section.row-first-level .row.row-wrapper:has(img[src*="aboutus.jpg"]) > .gsc-column:nth-child(2) .wo-section.wo-section-soft .container {
		padding: 24px 20px;
	}

	body.path-node .gbb-row-wrapper.section.row-first-level .row.row-wrapper:has(img[src*="aboutus.jpg"]) img[src*="aboutus.jpg"] {
		min-height: 240px;
	}

	.wo-about-page .wo-section-soft .wo-story-image-wrap {
		margin-top: 22px;
	}

	.wo-about-values .wo-grid-2 > .wo-card:nth-child(3) {
		grid-column: auto;
	}

	.wo-state-grid {
		grid-template-columns: 1fr;
	}

	.wo-area-map-shell {
		grid-template-columns: 1fr;
	}

	.wo-area-map-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.wo-page .container {
		width: calc(100% - 18px) !important;
	}

	.wo-home-feature-card h3 {
		font-size: 24px;
	}

	.wo-product-tile {
		width: 100%;
	}

	.wo-product-tile span {
		font-size: 24px;
	}

	.wo-home-feature-card strong {
		font-size: 24px;
	}

	.wo-home-services-intro {
		padding-bottom: 30px;
	}

	.wo-home-services-intro h2 {
		font-size: clamp(30px, 10vw, 44px);
	}

	.wo-home-about-copy h2 {
		font-size: clamp(32px, 10vw, 44px);
	}

	.wo-utility-list {
		gap: 10px;
	}

	.wo-utility-actions {
		gap: 10px;
	}

	.wo-utility-list a,
	.wo-utility-emergency {
		font-size: 12px;
	}

	.wo-section {
		padding: 52px 0;
	}

	.wo-btn {
		width: 100%;
		text-align: center;
	}

	.wo-stats,
	.wo-grid-4 {
		grid-template-columns: 1fr;
	}

	.wo-about-cert-grid {
		grid-template-columns: 1fr;
	}

	.wo-cta-band {
		padding: 24px;
	}

	.wo-state-card {
		padding-left: 24px;
	}

	.wo-state-image {
		position: static;
		margin-bottom: 12px;
		width: 54px;
		height: 54px;
	}

	.wo-state-card::before {
		display: none;
	}

	.wo-area-pin {
		width: 30px;
		height: 30px;
		margin-top: -15px;
		margin-left: -15px;
		font-size: 9px;
	}

	.wo-area-map-list {
		grid-template-columns: 1fr;
	}

	.wo-request-panel {
		padding: 24px;
	}

	.wo-contact-intro-copy h2 {
		font-size: clamp(32px, 10vw, 46px);
	}

	.wo-contact-request-copy {
		max-width: none;
		margin-left: 0;
		padding: 20px;
	}

	.wo-contact-map-section iframe {
		height: 320px;
	}

	.wo-employment-hero-media img {
		min-height: 260px;
	}

}

/* Dynamic service view styling (reference-inspired with placeholder imagery). */
.wo-home-services-view,
.wo-services-page-view {
	padding-top: 60px;
	padding-bottom: 64px;
}

.wo-home-services-view {
	width: calc(100% - 48px);
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
}

.wo-home-services-view .block-title,
.wo-services-page-view .block-title {
	margin: 0 0 22px;
	font-size: clamp(34px, 4vw, 50px);
	line-height: 0.95;
	text-transform: uppercase;
}

.wo-home-services-view .owl-carousel .item,
.wo-services-page-view .owl-carousel .item {
	height: 100%;
}

.wo-home-services-view .owl-carousel,
.wo-services-page-view .owl-carousel {
	width: 100%;
	margin-left: 0;
	margin-right: 0;
}

/* Home must show all services at once instead of partial carousel items. */
.wo-home-services-view .owl-stage-outer {
	overflow: visible;
}

.wo-home-services-view .owl-stage {
	transform: none !important;
	width: 100% !important;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0;
}

.wo-home-services-view .owl-item {
	width: auto !important;
	display: block !important;
	float: none;
}

.wo-home-services-view .owl-nav {
	display: none;
}

.wo-home-services-view .service-block.grid,
.wo-services-page-view .service-block.grid {
	height: 100%;
	padding: 10px 6px;
}

.wo-home-services-view .service-block.grid .box-content,
.wo-services-page-view .service-block.grid .box-content {
	position: relative;
	overflow: hidden;
	border: 1px solid #d7e2dc;
	border-radius: 18px;
	background: #ffffff;
	box-shadow: 0 10px 28px rgba(10, 43, 30, 0.12);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
	min-height: 430px;
}

.wo-home-services-view .service-block.grid .service-block-content,
.wo-services-page-view .service-block.grid .service-block-content {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.wo-home-services-view .service-block.grid .box-content:hover,
.wo-home-services-view .service-block.grid .box-content:focus-within,
.wo-services-page-view .service-block.grid .box-content:hover,
.wo-services-page-view .service-block.grid .box-content:focus-within {
	transform: none;
	border-color: #b4cbbd;
	box-shadow: 0 18px 34px rgba(10, 43, 30, 0.16);
}

.wo-home-services-view .service-block.grid .frontend,
.wo-services-page-view .service-block.grid .frontend {
	position: relative;
	z-index: 2;
	padding: 18px 18px 16px;
}

.wo-home-services-view .service-block.grid .service-icon,
.wo-services-page-view .service-block.grid .service-icon {
	width: 56px;
	height: 56px;
	margin-bottom: 14px;
	border-radius: 999px;
	background: linear-gradient(145deg, #00506b, #00364d);
	box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
	position: relative;
}

.wo-home-services-view .service-block.grid .service-icon::before,
.wo-services-page-view .service-block.grid .service-icon::before {
	content: "";
	position: absolute;
	inset: 18px;
	border-radius: 999px;
	background: #ffd149;
}

.wo-home-services-view .service-block.grid .title,
.wo-services-page-view .service-block.grid .title {
	margin-bottom: 10px;
	font-size: 30px;
	line-height: 1;
	text-transform: uppercase;
}

.wo-home-services-view .service-block.grid .title a,
.wo-services-page-view .service-block.grid .title a {
	color: #15332f;
	text-decoration: none;
}

.wo-home-services-view .service-block.grid .desc,
.wo-services-page-view .service-block.grid .desc {
	color: #556a63;
	font-size: 16px;
	line-height: 1.55;
	min-height: 0;
	margin-bottom: 14px;
}

.wo-home-services-view .service-block.grid .service-content,
.wo-services-page-view .service-block.grid .service-content {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 0 18px 18px;
}

.wo-home-services-view .service-block.grid .backend,
.wo-services-page-view .service-block.grid .backend {
	padding: 0 18px 18px;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.wo-home-services-view .service-block.grid .frontend,
.wo-home-services-view .service-block.grid .backend,
.wo-services-page-view .service-block.grid .frontend,
.wo-services-page-view .service-block.grid .backend {
	position: static !important;
	opacity: 1 !important;
	transform: none !important;
	transition: none !important;
	backface-visibility: visible !important;
}

.wo-home-services-view .service-block.grid .service-images,
.wo-services-page-view .service-block.grid .service-images {
	height: 164px;
	border-radius: 14px;
	margin-bottom: 12px;
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(35deg, rgba(6, 42, 34, 0.7), rgba(6, 42, 34, 0.26)),
		radial-gradient(circle at 70% 20%, rgba(255, 209, 73, 0.34), transparent 46%),
		linear-gradient(120deg, #00617a 0%, #004f68 50%, #00344c 100%);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.wo-home-services-view .service-block.grid .service-images img,
.wo-services-page-view .service-block.grid .service-images img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center;
	border-radius: 14px;
}

.wo-home-services-view .service-block.grid .service-images .field,
.wo-home-services-view .service-block.grid .service-images .field__item,
.wo-home-services-view .service-block.grid .service-images a,
.wo-services-page-view .service-block.grid .service-images .field,
.wo-services-page-view .service-block.grid .service-images .field__item,
.wo-services-page-view .service-block.grid .service-images a {
	display: block;
	height: 100%;
}

.wo-home-services-view .service-block.grid .service-images::before,
.wo-services-page-view .service-block.grid .service-images::before {
	content: none;
	position: absolute;
	left: 12px;
	bottom: 10px;
	width: 92px;
	height: 8px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.56);
}

.wo-home-services-view .service-block.grid .readmore .btn-inline,
.wo-services-page-view .service-block.grid .readmore .btn-inline {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	border: 1px solid var(--wo-btn-red);
	border-radius: 999px;
	color: #ffffff;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	text-decoration: none;
	background: var(--wo-btn-red);
}

.wo-home-services-view .service-block.grid .readmore,
.wo-services-page-view .service-block.grid .readmore {
	margin-top: auto;
}

.wo-home-services-view .service-block.grid .readmore .btn-inline::after,
.wo-services-page-view .service-block.grid .readmore .btn-inline::after {
	content: "\f061";
	font-family: "Font Awesome 6 Free";
	font-size: 12px;
	font-weight: 900;
}

.wo-home-services-view .service-block.grid .readmore .btn-inline:hover,
.wo-home-services-view .service-block.grid .readmore .btn-inline:focus,
.wo-services-page-view .service-block.grid .readmore .btn-inline:hover,
.wo-services-page-view .service-block.grid .readmore .btn-inline:focus {
	background: var(--wo-btn-red-hover);
	border-color: var(--wo-btn-red-hover);
	color: #ffffff;
	text-decoration: none;
}

.wo-home-services-view .owl-nav .owl-prev,
.wo-home-services-view .owl-nav .owl-next,
.wo-services-page-view .owl-nav .owl-prev,
.wo-services-page-view .owl-nav .owl-next {
	position: absolute;
	top: -68px;
	width: 42px;
	height: 42px;
	border-radius: 999px;
	border: 1px solid #cad7d0;
	background: #fff;
	color: #19463b;
	font-size: 18px;
	line-height: 42px;
	text-align: center;
	transition: transform 0.2s ease, background-color 0.2s ease;
}

.wo-home-services-view .owl-nav .owl-prev,
.wo-services-page-view .owl-nav .owl-prev {
	right: 50px;
}

.wo-home-services-view .owl-nav .owl-next,
.wo-services-page-view .owl-nav .owl-next {
	right: 0;
}

.wo-home-services-view .owl-nav .owl-prev:hover,
.wo-home-services-view .owl-nav .owl-next:hover,
.wo-services-page-view .owl-nav .owl-prev:hover,
.wo-services-page-view .owl-nav .owl-next:hover {
	background: #f1f7f4;
	transform: translateY(-2px);
}

/* Per-card color mood variance so placeholders feel intentional, not flat. */
.wo-home-services-view .owl-item:nth-child(5n+1) .service-images,
.wo-services-page-view .owl-item:nth-child(5n+1) .service-images {
	background:
		linear-gradient(35deg, rgba(8, 46, 37, 0.68), rgba(8, 46, 37, 0.24)),
		radial-gradient(circle at 78% 25%, rgba(255, 209, 73, 0.36), transparent 42%),
		linear-gradient(130deg, #0a6780 0%, #005f79 52%, #00445d 100%);
}

.wo-home-services-view .owl-item:nth-child(5n+2) .service-images,
.wo-services-page-view .owl-item:nth-child(5n+2) .service-images {
	background:
		linear-gradient(35deg, rgba(13, 36, 56, 0.66), rgba(13, 36, 56, 0.2)),
		radial-gradient(circle at 24% 22%, rgba(110, 180, 255, 0.3), transparent 44%),
		linear-gradient(120deg, #2a5872 0%, #1f455e 52%, #153145 100%);
}

.wo-home-services-view .owl-item:nth-child(5n+3) .service-images,
.wo-services-page-view .owl-item:nth-child(5n+3) .service-images {
	background:
		linear-gradient(35deg, rgba(59, 39, 13, 0.65), rgba(59, 39, 13, 0.24)),
		radial-gradient(circle at 72% 18%, rgba(255, 226, 154, 0.36), transparent 42%),
		linear-gradient(125deg, #7d5d2a 0%, #664a20 52%, #3f2e14 100%);
}

.wo-home-services-view .owl-item:nth-child(5n+4) .service-images,
.wo-services-page-view .owl-item:nth-child(5n+4) .service-images {
	background:
		linear-gradient(35deg, rgba(57, 20, 20, 0.68), rgba(57, 20, 20, 0.24)),
		radial-gradient(circle at 72% 20%, rgba(255, 140, 140, 0.32), transparent 42%),
		linear-gradient(120deg, #7a3f3f 0%, #5b2e2e 52%, #3f2020 100%);
}

.wo-home-services-view .owl-item:nth-child(5n+5) .service-images,
.wo-services-page-view .owl-item:nth-child(5n+5) .service-images {
	background:
		linear-gradient(35deg, rgba(18, 43, 27, 0.68), rgba(18, 43, 27, 0.22)),
		radial-gradient(circle at 68% 22%, rgba(146, 255, 193, 0.3), transparent 40%),
		linear-gradient(120deg, #315f43 0%, #274d36 52%, #1a3525 100%);
}

@media (max-width: 991px) {
	.wo-home-services-view {
		width: calc(100% - 26px);
	}

	.wo-home-services-view .owl-stage {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.wo-home-services-view,
	.wo-services-page-view {
		padding-top: 44px;
		padding-bottom: 48px;
	}

	.wo-home-services-view .owl-nav,
	.wo-services-page-view .owl-nav {
		display: none;
	}

	.wo-home-services-view .service-block.grid .box-content,
	.wo-services-page-view .service-block.grid .box-content {
		min-height: 400px;
	}

	.wo-hero .container::before {
		font-size: 10px;
		letter-spacing: 0.06em;
	}
}

@media (max-width: 767px) {
	.wo-home-services-view {
		width: calc(100% - 18px);
	}

	.wo-home-services-view .owl-stage {
		grid-template-columns: 1fr;
	}
}

/* Service detail page (reference-inspired structure and spacing). */
.wo-service-detail {
	padding-bottom: 72px;
	background: #ffffff;
}

.wo-service-inner {
	width: calc(100% - 48px);
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
}

.wo-service-hero {
	padding: 66px 0 28px;
	background:
		radial-gradient(circle at 84% 18%, rgba(255, 209, 73, 0.24), transparent 40%),
		linear-gradient(120deg, #004f68 0%, #00344c 100%);
	color: #ffffff;
}

.wo-service-eyebrow {
	margin-bottom: 12px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.84);
}

.wo-service-title {
	margin: 0;
	max-width: 980px;
	color: #ffffff;
	font-size: clamp(34px, 5.4vw, 56px);
	line-height: 0.95;
	text-transform: uppercase;
}

.wo-service-hero-cta {
	margin-top: 22px;
}

.wo-service-main {
	padding: 34px 0 38px;
	background: #f8fbf9;
}

.wo-service-main-grid {
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	gap: 24px;
	align-items: stretch;
}

.wo-service-media {
	min-height: 360px;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 18px 34px rgba(10, 43, 30, 0.16);
	background: #dce8e2;
}

.wo-service-media .field,
.wo-service-media .field__item,
.wo-service-media a,
.wo-service-media img {
	display: block;
	width: 100%;
	height: 100%;
}

.wo-service-media img {
	object-fit: cover;
	object-position: center;
}

.wo-service-copy {
	padding: 26px;
	border: 1px solid #d6e3dc;
	border-radius: 18px;
	background: #ffffff;
	box-shadow: 0 10px 24px rgba(10, 43, 30, 0.08);
}

.wo-service-icon {
	margin-bottom: 14px;
}

.wo-service-content {
	color: #3f5751;
	font-size: 18px;
	line-height: 1.7;
}

.wo-service-tabset {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
	align-items: start;
}

.wo-service-tab-list {
	display: block;
	/* grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 8px; */
}

.wo-service-tab-trigger {
	width: max-content;
	padding: 8px 12px;
	margin: 3px;
	border: 1px solid #d4e1db;
	border-radius: 10px;
	text-align: center;
	font-family: "Source Sans 3", "Helvetica Neue", Helvetica, sans-serif;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
	white-space: normal;
	color: #1a3a33;
	background: #f5faf7;
	cursor: pointer;
	transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.wo-service-tab-trigger:hover,
.wo-service-tab-trigger:focus {
	outline: none;
	border-color: #aac8bc;
	background: #edf6f1;
}

.wo-service-tab-trigger.is-active {
	border-color: #00506b;
	background: #00506b;
	color: #ffffff;
	box-shadow: 0 8px 18px rgba(10, 43, 30, 0.16);
}

.wo-service-tab-panels {
	padding: 18px;
	border: 1px solid #d4e1db;
	border-radius: 14px;
	background: #f8fbfa;
}

.wo-service-tab-panel {
	display: none;
}

.wo-service-tab-panel.is-active {
	display: block;
}

.wo-service-tab-panel p {
	margin: 0;
	font-size: 16px;
	line-height: 1.65;
	color: #455d56;
}

.wo-service-content ul {
	margin: 0 0 16px;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 8px;
}

.wo-service-content li {
	position: relative;
	padding-left: 22px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
	text-transform: none;
	color: #173830;
}

.wo-service-content li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: #00506b;
}

.wo-service-content p {
	margin: 0;
	font-size: 16px;
	line-height: 1.6;
	color: #4e665f;
}

.wo-service-content > *:last-child {
	margin-bottom: 0;
}

.wo-service-values {
	padding: 14px 0 22px;
	background: #ffffff;
}

.wo-service-values-kicker {
	margin: 0 0 10px;
	color: var(--wo-primary);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.wo-service-values h2 {
	margin: 0 0 22px;
	font-size: clamp(30px, 4.3vw, 46px);
	line-height: 0.98;
	text-transform: uppercase;
}


.wo-service-values-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.wo-service-value-card {
	height: 100%;
	padding: 20px;
	border: 1px solid #d5e2db;
	border-radius: 16px;
	background: #f8fbfa;
	box-shadow: 0 8px 20px rgba(10, 43, 30, 0.07);
}

.wo-service-value-card h3 {
	margin: 0 0 8px;
	font-size: 24px;
	line-height: 1;
	text-transform: uppercase;
	color: #183832;
}

.wo-service-value-card p {
	margin: 0;
	font-size: 16px;
	line-height: 1.6;
	color: #4d645e;
}

.wo-service-request {
	padding-top: 26px;
}

.wo-service-request .wo-service-inner {
	padding: 30px;
	border-radius: 20px;
	text-align: center;
	background:
		radial-gradient(circle at 80% 16%, rgba(255, 255, 255, 0.2), transparent 42%),
		linear-gradient(125deg, #004862 0%, #00344c 100%);
	box-shadow: 0 18px 36px rgba(9, 30, 28, 0.22);
}

.wo-service-request p {
	margin-bottom: 8px;
	font-size: 18px;
	color: rgba(255, 255, 255, 0.86);
}

.wo-service-request h3 {
	margin-bottom: 18px;
	font-size: clamp(30px, 4vw, 44px);
	line-height: 0.98;
	text-transform: uppercase;
	color: #ffffff;
}

@media (max-width: 991px) {
	.wo-service-inner {
		width: calc(100% - 26px);
	}

	.wo-service-main-grid,
	.wo-service-values-grid {
		grid-template-columns: 1fr;
	}

	.wo-service-main {
		padding-top: 24px;
	}

	.wo-service-media {
		min-height: 300px;
	}

	.wo-service-tab-list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.wo-service-inner {
		width: calc(100% - 18px);
	}

	.wo-service-detail {
		padding-bottom: 52px;
	}

	.wo-service-hero {
		padding-top: 44px;
	}

	.wo-service-copy,
	.wo-service-request .wo-service-inner {
		padding: 22px;
	}

	.wo-service-tab-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
.wo-request-panel h3 {
    color: #fff;
}