/*
Theme Name: East Coast Equipment Solutions
Theme URI: https://eces-solutions.com
Author: East Coast Equipment Solutions
Author URI: https://eces-solutions.com
Description: A modern block theme for East Coast Equipment Solutions - commercial loading dock and sports facility equipment specialists.
Version: 1.0.0
Requires at least: 6.4
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: east-coast-equipment
Tags: block-patterns, block-styles, full-site-editing, wide-blocks
*/

/* ================================
   Custom Properties
   ================================ */
:root {
	/* Glassmorphism */
	--glass-bg: rgba(15, 23, 42, 0.6);
	--glass-bg-strong: rgba(15, 23, 42, 0.7);
	--glass-border: rgba(255, 255, 255, 0.1);

	/* Shadows */
	--shadow-glow-amber: 0 0 20px rgba(245, 158, 11, 0.3);
	--shadow-glow-amber-strong: 0 0 30px rgba(245, 158, 11, 0.5);

	/* Transitions */
	--transition-fast: 150ms ease;
	--transition-normal: 300ms ease;
	--transition-slow: 500ms ease;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	overflow-x: hidden;
}

/* ================================
   Diagonal Clip Path
   ================================ */
.clip-diagonal {
	clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

/* ================================
   Glassmorphism Effects
   ================================ */
.glass {
	background: var(--glass-bg);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid var(--glass-border);
}

.glass-strong {
	background: var(--glass-bg-strong);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid var(--glass-border);
}

.glass-card {
	background: var(--glass-bg);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid var(--glass-border);
	border-radius: 1rem;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	position: relative;
	overflow: hidden;
}

.glass-badge {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid var(--glass-border);
	border-radius: 0.75rem;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* ================================
   Gradient Text
   ================================ */
.gradient-text-amber {
	background: linear-gradient(to right, #fcd34d, #f59e0b);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* ================================
   Glow Effect Behind Card
   ================================ */
.glow-effect {
	position: relative;
}

.glow-effect::before {
	content: '';
	position: absolute;
	inset: -4px;
	background: linear-gradient(to right, rgba(245, 158, 11, 0.2), rgba(14, 165, 233, 0.2));
	filter: blur(24px);
	opacity: 0.5;
	z-index: -1;
	border-radius: inherit;
}

/* ================================
   Hero Section
   ================================ */
.hero-section {
	position: relative;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow: hidden;
	background-color: var(--wp--preset--color--slate-900);
}

.hero-background {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.hero-bg-left {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	transition: transform 20s linear;
}

.hero-bg-left:hover {
	transform: scale(1.05);
}

.hero-bg-right {
	display: none;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 55%;
	height: 100%;
	background-size: cover;
	background-position: center;
	clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
	z-index: 10;
	transition: transform 20s linear;
}

.hero-bg-right:hover {
	transform: scale(1.05);
}

@media (min-width: 768px) {
	.hero-bg-right {
		display: block;
	}
}

.hero-content {
	position: relative;
	z-index: 30;
	width: 100%;
	max-width: 80rem;
	margin: 0 auto;
	padding: 5rem 1.5rem 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.hero-card {
	width: 100%;
	max-width: 36rem;
	animation: fadeInUp 0.6s ease-out;
}

/* ================================
   SafePath Badge
   ================================ */
.safepath-badge {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	padding: 0.75rem;
	padding-right: 1.5rem;
}

.safepath-badge img {
	height: 3.5rem;
	width: auto;
	object-fit: contain;
	filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07));
}

@media (min-width: 768px) {
	.safepath-badge img {
		height: 4rem;
	}
}

.safepath-label {
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: left;
}

.safepath-label-small {
	font-size: 0.625rem;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--wp--preset--color--amber-400);
	font-weight: 700;
	margin-bottom: 2px;
}

.safepath-label-large {
	font-size: 1.125rem;
	font-weight: 900;
	color: var(--wp--preset--color--white);
	letter-spacing: 0.05em;
	line-height: 1;
	white-space: nowrap;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
	.safepath-label-large {
		font-size: 1.25rem;
	}
}

/* ================================
   Hero Buttons
   ================================ */
.btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	background-color: var(--wp--preset--color--amber-500);
	color: var(--wp--preset--color--slate-900);
	padding: 0.625rem 1.5rem;
	border-radius: 9999px;
	font-size: 0.875rem;
	font-weight: 700;
	text-decoration: none;
	transition: all var(--transition-normal);
	box-shadow: var(--shadow-glow-amber);
	border: none;
	cursor: pointer;
}

.btn-primary:hover {
	background-color: var(--wp--preset--color--amber-400);
	box-shadow: var(--shadow-glow-amber-strong);
	transform: translateY(-2px);
}

.btn-primary svg {
	width: 1rem;
	height: 1rem;
	transition: transform var(--transition-normal);
}

.btn-primary:hover svg {
	transform: translateX(4px);
}

.btn-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	background: transparent;
	color: var(--wp--preset--color--white);
	padding: 0.625rem 1.5rem;
	border-radius: 9999px;
	font-size: 0.875rem;
	font-weight: 500;
	text-decoration: none;
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all var(--transition-normal);
	cursor: pointer;
}

.btn-secondary:hover {
	background: rgba(255, 255, 255, 0.1);
}

/* ================================
   Bottom Floating Labels
   ================================ */
.hero-bottom-labels {
	position: relative;
	z-index: 30;
	margin-top: auto;
	padding: 0 1.5rem 2rem;
	width: 100%;
	max-width: 80rem;
	margin-left: auto;
	margin-right: auto;
	display: none;
	justify-content: space-between;
	align-items: flex-end;
}

@media (min-width: 768px) {
	.hero-bottom-labels {
		display: flex;
	}
}

.floating-label {
	max-width: 18rem;
	padding: 1rem;
	border-radius: 0.75rem;
	transition: transform var(--transition-normal);
}

.floating-label:hover {
	transform: translateY(-4px);
}

.floating-label-left {
	border-left: 4px solid var(--wp--preset--color--sky-500);
	text-align: left;
}

.floating-label-right {
	border-right: 4px solid var(--wp--preset--color--amber-500);
	text-align: right;
	margin-left: auto;
}

.floating-label-header {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.25rem;
}

.floating-label-right .floating-label-header {
	justify-content: flex-end;
}

.floating-label-title {
	font-size: 1rem;
	font-weight: 700;
	color: var(--wp--preset--color--white);
	letter-spacing: 0.05em;
	margin: 0;
}

.floating-label-icon {
	width: 1rem;
	height: 1rem;
}

.floating-label-icon-sky {
	color: var(--wp--preset--color--sky-400);
}

.floating-label-icon-amber {
	color: var(--wp--preset--color--amber-400);
}

.floating-label-text {
	font-size: 0.75rem;
	color: var(--wp--preset--color--slate-400);
	line-height: 1.5;
	margin: 0;
}

/* ================================
   Mobile Gradient Overlay
   ================================ */
.hero-mobile-gradient {
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 33%;
	background: linear-gradient(to top, var(--wp--preset--color--slate-900), rgba(15, 23, 42, 0.8), transparent);
	z-index: 10;
	pointer-events: none;
}

@media (min-width: 768px) {
	.hero-mobile-gradient {
		display: none;
	}
}

/* ================================
   Animations
   ================================ */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.animate-fade-in-up {
	animation: fadeInUp 0.6s ease-out;
}

/* ================================
   Navigation / Header
   ================================ */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	padding: 1rem 0;
	transition: padding var(--transition-normal);
}

@media (min-width: 768px) {
	.site-header {
		padding: 1.5rem 0;
	}
}

.site-header.is-scrolled {
	padding: 0.5rem 0;
}

.header-inner {
	max-width: 80rem;
	margin: 0 auto;
	padding: 0 1rem;
}

@media (min-width: 768px) {
	.header-inner {
		padding: 0 1.5rem;
	}
}

.header-container {
	position: relative;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid var(--glass-border);
	border-radius: 9999px;
	padding: 0.75rem 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: rgba(15, 23, 42, 0.4);
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	transition: all var(--transition-normal);
}

.site-header.is-scrolled .header-container {
	background: rgba(15, 23, 42, 0.9);
	border-color: var(--wp--preset--color--slate-700);
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.header-logo img {
	height: 3rem;
	width: auto;
	object-fit: contain;
	border-radius: 0.375rem;
}

@media (min-width: 768px) {
	.header-logo img {
		height: 5rem;
	}
}

.header-nav {
	display: none;
	align-items: center;
	gap: 1.5rem;
}

@media (min-width: 1024px) {
	.header-nav {
		display: flex;
	}
}

@media (min-width: 1280px) {
	.header-nav {
		gap: 2rem;
	}
}

.header-nav a {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--wp--preset--color--slate-200);
	text-decoration: none;
	position: relative;
	transition: color var(--transition-normal);
}

.header-nav a::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--wp--preset--color--amber-400);
	transition: width var(--transition-normal);
}

.header-nav a:hover {
	color: var(--wp--preset--color--amber-400);
}

.header-nav a:hover::after {
	width: 100%;
}

.header-phone {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.header-phone svg {
	color: var(--wp--preset--color--amber-400);
}

.header-cta {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.header-cta .btn-primary {
	display: none;
}

@media (min-width: 640px) {
	.header-cta .btn-primary {
		display: inline-flex;
	}
}

.mobile-menu-toggle {
	display: flex;
	padding: 0.25rem;
	background: transparent;
	border: none;
	color: var(--wp--preset--color--white);
	cursor: pointer;
	border-radius: 9999px;
	transition: background var(--transition-normal);
}

.mobile-menu-toggle:hover {
	background: rgba(255, 255, 255, 0.1);
}

@media (min-width: 1024px) {
	.mobile-menu-toggle {
		display: none;
	}
}

.mobile-menu-toggle svg {
	width: 1.5rem;
	height: 1.5rem;
}

/* ================================
   Footer
   ================================ */
.site-footer {
	background-color: var(--wp--preset--color--slate-950);
	color: var(--wp--preset--color--white);
	padding-top: 5rem;
	padding-bottom: 2.5rem;
	border-top: 4px solid var(--wp--preset--color--amber-500);
}

.footer-inner {
	max-width: 80rem;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	margin-bottom: 4rem;
}

@media (min-width: 768px) {
	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.footer-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.footer-brand img {
	height: 6rem;
	width: auto;
	object-fit: contain;
	border-radius: 0.375rem;
	margin-bottom: 1.5rem;
}

.footer-brand p {
	color: var(--wp--preset--color--slate-400);
	font-size: 0.875rem;
	line-height: 1.6;
}

.footer-address {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-top: 1rem;
	color: var(--wp--preset--color--slate-300);
	font-size: 0.875rem;
	transition: color var(--transition-normal);
}

.footer-address:hover {
	color: var(--wp--preset--color--white);
}

.footer-address svg {
	width: 1rem;
	height: 1rem;
	color: var(--wp--preset--color--amber-500);
	flex-shrink: 0;
}

.footer-heading {
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--wp--preset--color--amber-500);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 1.5rem;
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li {
	margin-bottom: 0.75rem;
}

.footer-links a {
	color: var(--wp--preset--color--slate-300);
	font-size: 0.875rem;
	text-decoration: none;
	transition: all var(--transition-normal);
	display: inline-block;
}

.footer-links a:hover {
	color: var(--wp--preset--color--white);
	transform: translateX(4px);
}

.footer-contact li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1rem;
	color: var(--wp--preset--color--slate-300);
	font-size: 0.875rem;
	transition: color var(--transition-normal);
}

.footer-contact li:hover {
	color: var(--wp--preset--color--white);
}

.footer-contact svg {
	width: 1rem;
	height: 1rem;
	color: var(--wp--preset--color--amber-500);
	flex-shrink: 0;
}

.footer-bottom {
	border-top: 1px solid var(--wp--preset--color--slate-900);
	padding-top: 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	font-size: 0.75rem;
	color: var(--wp--preset--color--slate-600);
}

@media (min-width: 768px) {
	.footer-bottom {
		flex-direction: row;
		justify-content: space-between;
	}
}

.footer-bottom-links {
	display: flex;
	gap: 1.5rem;
}

.footer-bottom-links a {
	color: var(--wp--preset--color--slate-600);
	text-decoration: none;
	transition: color var(--transition-normal);
}

.footer-bottom-links a:hover {
	color: var(--wp--preset--color--slate-400);
}

.footer-about {
	grid-column: span 2;
}

@media (max-width: 767px) {
	.footer-about {
		grid-column: span 1;
	}
}

.footer-about-text {
	color: var(--wp--preset--color--slate-400);
	font-size: 0.875rem;
	line-height: 1.7;
	margin: 0;
}

/* ================================
   Page Header & Prose Styles
   ================================ */
.page-header {
	padding: 4rem 1.5rem 3rem;
	background: var(--wp--preset--color--slate-950);
	text-align: center;
}

.page-title {
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 700;
	color: var(--wp--preset--color--white);
	margin: 0 0 0.5rem;
}

.container-sm {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.prose {
	color: var(--wp--preset--color--slate-300);
	line-height: 1.8;
}

.prose h3 {
	color: var(--wp--preset--color--white);
	font-size: 1.25rem;
	font-weight: 600;
	margin: 2rem 0 1rem;
}

.prose h3:first-child {
	margin-top: 0;
}

.prose p {
	margin: 0 0 1rem;
}

.prose ul {
	margin: 0 0 1.5rem;
	padding-left: 1.5rem;
}

.prose li {
	margin-bottom: 0.5rem;
}

.prose a {
	color: var(--wp--preset--color--amber-500);
	text-decoration: none;
}

.prose a:hover {
	text-decoration: underline;
}

.prose strong {
	color: var(--wp--preset--color--white);
}

.section-padding {
	padding: 4rem 1.5rem;
}

.text-slate-500 {
	color: var(--wp--preset--color--slate-500);
}

/* ================================
   Utility Classes
   ================================ */
.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

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

/* Hide on mobile, show on md+ */
.hidden-mobile {
	display: none;
}

@media (min-width: 768px) {
	.hidden-mobile {
		display: block;
	}
}

/* Show on mobile, hide on md+ */
.visible-mobile {
	display: block;
}

@media (min-width: 768px) {
	.visible-mobile {
		display: none;
	}
}

/* ================================
   Block Editor Adjustments
   ================================ */
.wp-block-cover.hero-cover {
	min-height: 100vh;
}

.wp-block-buttons.hero-buttons {
	justify-content: center;
}

.wp-block-button.is-style-outline .wp-block-button__link {
	border-color: rgba(255, 255, 255, 0.2);
	color: var(--wp--preset--color--white);
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.3);
}

/* ================================
   WordPress Navigation Block Styles
   ================================ */

/* Primary Navigation (Header) */
.wp-nav-primary {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.wp-nav-primary .wp-block-navigation__container {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.wp-nav-primary .wp-block-navigation-item__content {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--wp--preset--color--slate-200);
	text-decoration: none;
	position: relative;
	transition: color var(--transition-normal);
}

.wp-nav-primary .wp-block-navigation-item__content::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--wp--preset--color--amber-400);
	transition: width var(--transition-normal);
}

.wp-nav-primary .wp-block-navigation-item__content:hover {
	color: var(--wp--preset--color--amber-400);
}

.wp-nav-primary .wp-block-navigation-item__content:hover::after {
	width: 100%;
}

/* Remove default WP navigation styles */
.wp-nav-primary .wp-block-navigation-item {
	margin: 0;
	padding: 0;
}

.wp-nav-primary .wp-block-navigation__submenu-icon {
	display: none;
}

/* Footer Navigation */
.wp-nav-footer,
.wp-nav-footer-services {
	display: flex;
	flex-direction: column;
	gap: 0;
	padding: 0;
	margin: 0;
}

.wp-nav-footer .wp-block-navigation__container,
.wp-nav-footer-services .wp-block-navigation__container {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.wp-nav-footer .wp-block-navigation-item,
.wp-nav-footer-services .wp-block-navigation-item {
	margin-bottom: 0.75rem;
}

.wp-nav-footer .wp-block-navigation-item__content,
.wp-nav-footer-services .wp-block-navigation-item__content {
	color: var(--wp--preset--color--slate-300);
	font-size: 0.875rem;
	text-decoration: none;
	transition: all var(--transition-normal);
	display: inline-block;
}

.wp-nav-footer .wp-block-navigation-item__content:hover,
.wp-nav-footer-services .wp-block-navigation-item__content:hover {
	color: var(--wp--preset--color--white);
	transform: translateX(4px);
}

/* Footer navigation section wrapper */
.footer-nav-section {
	min-height: 0;
}

/* Hide mobile toggle in footer */
.wp-nav-footer .wp-block-navigation__responsive-container-open,
.wp-nav-footer-services .wp-block-navigation__responsive-container-open {
	display: none !important;
}

/* ================================
   wp_nav_menu() Output Styles
   ================================ */

/* Primary Menu (Header) - wp_nav_menu output */
.nav-menu-primary {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-menu-primary li {
	margin: 0;
	padding: 0;
}

.nav-menu-primary a {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--wp--preset--color--slate-200);
	text-decoration: none;
	position: relative;
	transition: color var(--transition-normal);
}

.nav-menu-primary a::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--wp--preset--color--amber-400);
	transition: width var(--transition-normal);
}

.nav-menu-primary a:hover {
	color: var(--wp--preset--color--amber-400);
}

.nav-menu-primary a:hover::after {
	width: 100%;
}

/* Submenu styling for primary nav */
.nav-menu-primary .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: rgba(15, 23, 42, 0.95);
	border: 1px solid var(--glass-border);
	border-radius: 0.5rem;
	padding: 0.5rem 0;
	min-width: 200px;
	flex-direction: column;
	gap: 0;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
	z-index: 100;
}

.nav-menu-primary li:hover>.sub-menu {
	display: flex;
}

.nav-menu-primary .sub-menu li {
	width: 100%;
}

.nav-menu-primary .sub-menu a {
	display: block;
	padding: 0.5rem 1rem;
	white-space: nowrap;
}

.nav-menu-primary .sub-menu a::after {
	display: none;
}

.nav-menu-primary>li {
	position: relative;
}

/* Fix for WordPress admin bar */
@media (min-width: 601px) {
	.admin-bar .site-header {
		top: 32px;
	}
}

@media (max-width: 600px) {
	.admin-bar .site-header {
		top: 46px;
	}
}

/* ================================
   Drop Shadow for Text
   ================================ */
.drop-shadow-text {
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.drop-shadow-text-lg {
	text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

/* ================================
   Enhanced Hero Design
   ================================ */
.hero-content-enhanced {
	padding-top: 8rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
}

@media (min-width: 768px) {
	.hero-content-enhanced {
		padding-top: 6rem;
		gap: 2rem;
	}
}

/* SafePath Dealer Logo - Centered Banner */
.safepath-dealer-logo {
	animation: floatIn 0.8s ease-out;
	filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.5));
	width: 100%;
	max-width: 54rem;
	/* 50% wider than 36rem hero card */
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 2rem;
	/* detached from nav */
}

.safepath-dealer-logo img {
	height: auto;
	width: 100%;
	object-fit: contain;
}

@keyframes floatIn {
	from {
		opacity: 0;
		transform: translateY(-30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Enhanced Glass Card */
.hero-glass-enhanced {
	position: relative;
	background: linear-gradient(135deg, rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.5));
	border: 1px solid rgba(255, 255, 255, 0.15);
	box-shadow:
		0 25px 50px -12px rgba(0, 0, 0, 0.4),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-card-accent {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60%;
	height: 3px;
	background: linear-gradient(90deg, transparent, #f59e0b, transparent);
	border-radius: 0 0 4px 4px;
}

/* Hero Headline */
.hero-headline {
	font-size: clamp(2rem, 6vw, 3.5rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	color: #fff;
	margin-bottom: 1rem;
	line-height: 1.05;
}

/* Hero Subheadline */
.hero-subheadline {
	font-size: clamp(1rem, 2.5vw, 1.25rem);
	font-weight: 400;
	color: #94a3b8;
	margin-bottom: 2rem;
	line-height: 1.6;
	max-width: 32rem;
	margin-left: auto;
	margin-right: auto;
}

/* Hero Buttons */
.hero-buttons {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	justify-content: center;
	align-items: center;
	margin-bottom: 2rem;
}

@media (min-width: 480px) {
	.hero-buttons {
		flex-direction: row;
	}
}

.btn-primary-lg {
	padding: 0.875rem 2rem;
	font-size: 1rem;
}

.btn-secondary-lg {
	padding: 0.875rem 2rem;
	font-size: 1rem;
}

/* Trust Indicators */
.hero-trust-indicators {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.8rem;
	color: #64748b;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-weight: 500;
}

.trust-item svg {
	color: var(--wp--preset--color--amber-500);
}

/* Shimmer animation for glow effect */
.hero-glass-enhanced::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg,
			transparent,
			rgba(255, 255, 255, 0.03),
			transparent);
	animation: shimmer 8s infinite;
	pointer-events: none;
}

@keyframes shimmer {
	0% {
		left: -100%;
	}

	50%,
	100% {
		left: 100%;
	}
}

/* ================================
   OUR EXPERTISE SECTION
   ================================ */
.expertise-section {
	background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
	padding: 5rem 1.5rem;
	position: relative;
	overflow: hidden;
}

.expertise-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--wp--preset--color--amber-500), var(--wp--preset--color--sky-500));
}

.expertise-inner {
	max-width: 80rem;
	margin: 0 auto;
}

.section-header {
	text-align: center;
	margin-bottom: 3rem;
}

.section-title {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 800;
	color: #1e293b;
	letter-spacing: 0.05em;
	margin: 0;
	position: relative;
	display: inline-block;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -0.75rem;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background: var(--wp--preset--color--amber-500);
	border-radius: 2px;
}

/* Expertise Cards Grid */
.expertise-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	position: relative;
	padding: 0 1rem;
}

@media (min-width: 1024px) {
	.expertise-grid {
		grid-template-columns: 1fr 1fr;
		gap: 3rem;
		padding: 0 2rem;
	}
}

/* Expertise Card */
.expertise-card {
	position: relative;
	background: #ffffff;
	border-radius: 1.5rem;
	overflow: hidden;
	box-shadow:
		0 10px 40px -10px rgba(0, 0, 0, 0.1),
		0 4px 6px -2px rgba(0, 0, 0, 0.05);
	transition: all var(--transition-normal);
	z-index: 1;
}

.expertise-card:hover {
	transform: translateY(-8px);
	box-shadow:
		0 25px 60px -15px rgba(0, 0, 0, 0.15),
		0 10px 20px -5px rgba(0, 0, 0, 0.08);
}

@media (min-width: 1024px) {
	.expertise-card-commercial {
		z-index: 2;
	}

	.expertise-card-sports {
		z-index: 1;
	}

	.expertise-card-commercial:hover {
		z-index: 3;
	}

	.expertise-card-sports:hover {
		z-index: 3;
	}
}

.expertise-card-image {
	position: relative;
	height: 200px;
	overflow: hidden;
}

@media (min-width: 768px) {
	.expertise-card-image {
		height: 240px;
	}
}

.expertise-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--transition-slow);
}

.expertise-card:hover .expertise-card-image img {
	transform: scale(1.08);
}

.expertise-card-image::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.1) 100%);
	pointer-events: none;
}

.expertise-card-content {
	padding: 2rem;
	position: relative;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.expertise-icon {
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
	border-radius: 1rem;
	margin-bottom: 1.25rem;
	color: #0284c7;
	box-shadow: 0 4px 12px rgba(2, 132, 199, 0.15);
}

.expertise-icon-amber {
	background: linear-gradient(135deg, #fef3c7 0%, #fcd34d 100%);
	color: #b45309;
	box-shadow: 0 4px 12px rgba(180, 83, 9, 0.15);
}

.expertise-card-title {
	font-size: 1.5rem;
	font-weight: 800;
	color: #1e293b;
	line-height: 1.2;
	margin: 0 0 1rem 0;
	letter-spacing: 0.02em;
}

.text-highlight {
	color: #0284c7;
}

.text-highlight-amber {
	color: #d97706;
}

.expertise-list {
	list-style: none;
	padding: 0;
	margin: 0 0 1.5rem 0;
	text-align: left;
	display: inline-block;
}

.expertise-list li {
	position: relative;
	padding-left: 1.5rem;
	margin-bottom: 0.5rem;
	font-size: 0.9375rem;
	color: #475569;
	line-height: 1.5;
	white-space: nowrap;
}

.expertise-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.5rem;
	width: 6px;
	height: 6px;
	background: var(--wp--preset--color--amber-500);
	border-radius: 50%;
}

.expertise-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: #1e293b;
	text-decoration: none;
	transition: all var(--transition-normal);
}

.expertise-link:hover {
	color: var(--wp--preset--color--amber-500);
}

.expertise-link svg {
	transition: transform var(--transition-normal);
}

.expertise-link:hover svg {
	transform: translateX(4px);
}

/* ================================
   THE ECES ADVANTAGE SECTION
   ================================ */
.advantage-section {
	background: #ffffff;
	padding: 5rem 1.5rem;
	position: relative;
}

.advantage-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80%;
	max-width: 60rem;
	height: 1px;
	background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

.advantage-inner {
	max-width: 80rem;
	margin: 0 auto;
}

/* Advantage Grid */
.advantage-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
}

@media (min-width: 768px) {
	.advantage-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 2.5rem;
	}
}

/* Advantage Item */
.advantage-item {
	text-align: center;
	padding: 1.5rem 1rem;
	border-radius: 1rem;
	transition: all var(--transition-normal);
}

.advantage-item:hover {
	background: #f8fafc;
	transform: translateY(-4px);
}

.advantage-icon {
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.25rem;
	background: transparent;
	border: 2px solid #e2e8f0;
	border-radius: 50%;
	color: var(--wp--preset--color--amber-500);
	transition: all var(--transition-normal);
}

.advantage-item:hover .advantage-icon {
	border-color: var(--wp--preset--color--amber-500);
	background: #fffbeb;
	transform: scale(1.05);
}

.advantage-title {
	font-size: 0.875rem;
	font-weight: 700;
	color: #1e293b;
	letter-spacing: 0.05em;
	margin: 0 0 0.5rem 0;
	text-transform: uppercase;
}

.advantage-subtitle {
	font-size: 0.8125rem;
	color: #64748b;
	line-height: 1.5;
	margin: 0;
}

/* Decorative line connector for desktop */
@media (min-width: 768px) {
	.advantage-grid::before {
		content: '';
		position: absolute;
		top: 50%;
		left: 10%;
		right: 10%;
		height: 1px;
		background: repeating-linear-gradient(90deg,
				#e2e8f0 0px,
				#e2e8f0 8px,
				transparent 8px,
				transparent 16px);
		pointer-events: none;
	}

	.advantage-grid {
		position: relative;
	}
}

/* ================================
   REQUEST A QUOTE SECTION
   ================================ */
.quote-section {
	background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
	padding: 5rem 1.5rem;
	position: relative;
	overflow: hidden;
}

/* Background decorations */
.quote-bg-decoration {
	position: absolute;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	filter: blur(100px);
	opacity: 0.15;
	pointer-events: none;
}

.quote-bg-decoration-left {
	top: -100px;
	left: -200px;
	background: var(--wp--preset--color--amber-500);
}

.quote-bg-decoration-right {
	bottom: -100px;
	right: -200px;
	background: var(--wp--preset--color--sky-500);
}

.quote-inner {
	max-width: 50rem;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.quote-content {
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* Quote Header */
.quote-header {
	text-align: center;
	margin-bottom: 2.5rem;
}

.quote-badge {
	display: inline-block;
	background: rgba(245, 158, 11, 0.15);
	color: var(--wp--preset--color--amber-400);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	padding: 0.5rem 1rem;
	border-radius: 9999px;
	margin-bottom: 1rem;
	border: 1px solid rgba(245, 158, 11, 0.3);
}

.quote-title {
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 800;
	color: #ffffff;
	margin: 0 0 1rem 0;
	line-height: 1.1;
}

.quote-subtitle {
	font-size: 1.125rem;
	color: #94a3b8;
	margin: 0;
	max-width: 32rem;
	line-height: 1.6;
}

/* Form Card */
.quote-form-card {
	width: 100%;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 1.5rem;
	padding: 2rem;
	box-shadow:
		0 25px 50px -12px rgba(0, 0, 0, 0.4),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
	.quote-form-card {
		padding: 2.5rem;
	}
}

/* Phone Banner */
.quote-phone-banner {
	display: flex;
	align-items: center;
	gap: 1rem;
	background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(245, 158, 11, 0.05));
	border: 1px solid rgba(245, 158, 11, 0.3);
	border-radius: 1rem;
	padding: 1rem 1.25rem;
	margin-bottom: 2rem;
}

.quote-phone-icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--wp--preset--color--amber-500);
	border-radius: 50%;
	color: #0f172a;
	flex-shrink: 0;
	animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
	0% {
		box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4);
	}

	70% {
		box-shadow: 0 0 0 10px rgba(245, 158, 11, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
	}
}

.quote-phone-text {
	display: flex;
	flex-direction: column;
}

.quote-phone-label {
	font-size: 0.8125rem;
	color: #94a3b8;
	margin-bottom: 0.125rem;
}

.quote-phone-number {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--wp--preset--color--amber-400);
	text-decoration: none;
	transition: color var(--transition-normal);
}

.quote-phone-number:hover {
	color: var(--wp--preset--color--amber-300);
}

/* Form Styles */
.quote-form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.form-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}

@media (min-width: 640px) {
	.form-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.form-label {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: #e2e8f0;
}

.form-label svg {
	color: var(--wp--preset--color--amber-500);
}

.form-label .required {
	color: #ef4444;
}

.form-input {
	width: 100%;
	padding: 0.875rem 1rem;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 0.75rem;
	color: #ffffff;
	font-size: 1rem;
	font-family: inherit;
	transition: all var(--transition-normal);
}

.form-input::placeholder {
	color: #64748b;
}

.form-input:focus {
	outline: none;
	background: rgba(255, 255, 255, 0.12);
	border-color: var(--wp--preset--color--amber-500);
	box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

.form-input:hover {
	border-color: rgba(255, 255, 255, 0.3);
}

/* Submit Button */
.form-submit {
	display: flex;
	justify-content: center;
	padding-top: 0.5rem;
}

.btn-primary-xl {
	padding: 1rem 2.5rem;
	font-size: 1.0625rem;
	gap: 0.75rem;
}

.btn-primary-xl svg {
	width: 1.25rem;
	height: 1.25rem;
}

/* Form Note */
.form-note {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-size: 0.8125rem;
	color: #64748b;
	margin: 0;
}

.form-note svg {
	color: #22c55e;
	flex-shrink: 0;
}

/* Trust Indicators */
.quote-trust {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.5rem;
	margin-top: 2.5rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 640px) {
	.quote-trust {
		gap: 2.5rem;
	}
}

.quote-trust-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	color: #94a3b8;
}

.quote-trust-item svg {
	color: #22c55e;
}

/* Contact Form 7 Integration Styles */
.wpcf7-form .form-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}

@media (min-width: 640px) {
	.wpcf7-form .form-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"] {
	width: 100%;
	padding: 0.875rem 1rem;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 0.75rem;
	color: #ffffff;
	font-size: 1rem;
	font-family: inherit;
	transition: all var(--transition-normal);
}

.wpcf7-form input::placeholder {
	color: #64748b;
}

.wpcf7-form input:focus {
	outline: none;
	background: rgba(255, 255, 255, 0.12);
	border-color: var(--wp--preset--color--amber-500);
	box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

.wpcf7-form .wpcf7-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	background-color: var(--wp--preset--color--amber-500);
	color: var(--wp--preset--color--slate-900);
	padding: 1rem 2.5rem;
	border-radius: 9999px;
	font-size: 1.0625rem;
	font-weight: 700;
	text-decoration: none;
	transition: all var(--transition-normal);
	box-shadow: var(--shadow-glow-amber);
	border: none;
	cursor: pointer;
}

.wpcf7-form .wpcf7-submit:hover {
	background-color: var(--wp--preset--color--amber-400);
	box-shadow: var(--shadow-glow-amber-strong);
	transform: translateY(-2px);
}

.wpcf7-form .wpcf7-response-output {
	margin-top: 1rem;
	padding: 1rem;
	border-radius: 0.75rem;
	text-align: center;
}

.wpcf7-form.sent .wpcf7-response-output {
	background: rgba(34, 197, 94, 0.15);
	border-color: rgba(34, 197, 94, 0.3);
	color: #4ade80;
}

.wpcf7-form.failed .wpcf7-response-output,
.wpcf7-form.invalid .wpcf7-response-output {
	background: rgba(239, 68, 68, 0.15);
	border-color: rgba(239, 68, 68, 0.3);
	color: #f87171;
}

/* ================================
   LOCATION PAGES - LOCAL SEO
   ================================ */

/* Location Hero */
.location-hero {
	background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
	padding: 8rem 1.5rem 5rem;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.location-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--wp--preset--color--amber-500), var(--wp--preset--color--sky-500));
}

.location-hero-inner {
	max-width: 50rem;
	margin: 0 auto;
}

.location-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(245, 158, 11, 0.15);
	color: var(--wp--preset--color--amber-400);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	padding: 0.5rem 1rem;
	border-radius: 9999px;
	margin-bottom: 1.5rem;
	border: 1px solid rgba(245, 158, 11, 0.3);
	text-transform: uppercase;
}

.location-title {
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 800;
	color: #ffffff;
	margin: 0 0 1.5rem 0;
	line-height: 1.15;
}

.location-subtitle {
	font-size: 1.125rem;
	color: #94a3b8;
	margin: 0 0 2rem 0;
	line-height: 1.6;
}

.location-cta-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
}

/* Location Intro */
.location-intro {
	background: #ffffff;
	padding: 4rem 1.5rem;
}

.location-intro-inner {
	max-width: 50rem;
	margin: 0 auto;
}

.location-intro-text {
	font-size: 1.0625rem;
	line-height: 1.8;
	color: #475569;
	margin: 0 0 1.5rem 0;
}

.location-intro-text:last-child {
	margin-bottom: 0;
}

/* Location Services */
.location-services {
	background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
	padding: 5rem 1.5rem;
}

.location-services-inner {
	max-width: 70rem;
	margin: 0 auto;
}

.location-section-title {
	font-size: clamp(1.5rem, 4vw, 2rem);
	font-weight: 800;
	color: #1e293b;
	text-align: center;
	margin: 0 0 3rem 0;
	letter-spacing: 0.02em;
}

.location-services-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

@media (min-width: 768px) {
	.location-services-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.location-service-card {
	background: #ffffff;
	border-radius: 1.5rem;
	padding: 2.5rem;
	box-shadow:
		0 10px 40px -10px rgba(0, 0, 0, 0.1),
		0 4px 6px -2px rgba(0, 0, 0, 0.05);
	transition: all var(--transition-normal);
}

.location-service-card:hover {
	transform: translateY(-4px);
	box-shadow:
		0 20px 50px -15px rgba(0, 0, 0, 0.15),
		0 8px 12px -4px rgba(0, 0, 0, 0.08);
}

.location-service-icon {
	width: 72px;
	height: 72px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 1rem;
	margin-bottom: 1.5rem;
}

.location-service-icon-sports {
	background: linear-gradient(135deg, #fef3c7 0%, #fcd34d 100%);
	color: #b45309;
}

.location-service-icon-commercial {
	background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
	color: #0284c7;
}

.location-service-title {
	font-size: 1.5rem;
	font-weight: 800;
	color: #1e293b;
	line-height: 1.2;
	margin: 0 0 1.25rem 0;
}

.location-service-list {
	list-style: none;
	padding: 0;
	margin: 0 0 1.5rem 0;
}

.location-service-list li {
	position: relative;
	padding-left: 1.5rem;
	margin-bottom: 0.625rem;
	font-size: 0.9375rem;
	color: #475569;
	line-height: 1.5;
}

.location-service-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.5rem;
	width: 6px;
	height: 6px;
	background: var(--wp--preset--color--amber-500);
	border-radius: 50%;
}

.location-service-desc {
	font-size: 0.875rem;
	color: #64748b;
	line-height: 1.6;
	margin: 0;
	padding-top: 1rem;
	border-top: 1px solid #e2e8f0;
}

/* Location Service Area Callout */
.location-area {
	background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
	padding: 3rem 1.5rem;
	text-align: center;
}

.location-area-inner {
	max-width: 50rem;
	margin: 0 auto;
}

.location-area-icon {
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(245, 158, 11, 0.15);
	border: 1px solid rgba(245, 158, 11, 0.3);
	border-radius: 50%;
	margin: 0 auto 1.5rem;
	color: var(--wp--preset--color--amber-400);
}

.location-area-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 0.75rem 0;
}

.location-area-text {
	font-size: 1rem;
	color: #94a3b8;
	margin: 0;
	line-height: 1.6;
}

/* Location Why Choose Us */
.location-why {
	background: #ffffff;
	padding: 5rem 1.5rem;
}

.location-why-inner {
	max-width: 70rem;
	margin: 0 auto;
}

.location-why-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}

@media (min-width: 768px) {
	.location-why-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.location-why-item {
	text-align: center;
	padding: 1.5rem 1rem;
}

.location-why-icon {
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	border: 2px solid #e2e8f0;
	border-radius: 50%;
	color: var(--wp--preset--color--amber-500);
	transition: all var(--transition-normal);
}

.location-why-item:hover .location-why-icon {
	border-color: var(--wp--preset--color--amber-500);
	background: #fffbeb;
}

.location-why-item h4 {
	font-size: 0.9375rem;
	font-weight: 700;
	color: #1e293b;
	margin: 0 0 0.5rem 0;
}

.location-why-item p {
	font-size: 0.8125rem;
	color: #64748b;
	margin: 0;
	line-height: 1.5;
}

/* Location FAQ */
.location-faq {
	background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
	padding: 5rem 1.5rem;
}

.location-faq-inner {
	max-width: 50rem;
	margin: 0 auto;
}

.location-faq-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.location-faq-item {
	background: #ffffff;
	border-radius: 1rem;
	padding: 1.5rem 2rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	transition: all var(--transition-normal);
}

.location-faq-item:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.location-faq-question {
	font-size: 1rem;
	font-weight: 700;
	color: #1e293b;
	margin: 0 0 0.75rem 0;
	line-height: 1.4;
}

.location-faq-answer p {
	font-size: 0.9375rem;
	color: #475569;
	margin: 0;
	line-height: 1.7;
}

/* Location CTA */
.location-cta {
	background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
	padding: 5rem 1.5rem;
	text-align: center;
}

.location-cta-inner {
	max-width: 40rem;
	margin: 0 auto;
}

.location-cta-title {
	font-size: clamp(1.5rem, 4vw, 2rem);
	font-weight: 800;
	color: #ffffff;
	margin: 0 0 1rem 0;
}

.location-cta-text {
	font-size: 1.0625rem;
	color: #94a3b8;
	margin: 0 0 2rem 0;
	line-height: 1.6;
}

/* Button size variants */
.btn-primary-xl {
	padding: 1rem 2.5rem;
	font-size: 1.0625rem;
}

.btn-secondary-lg {
	padding: 0.875rem 2rem;
	font-size: 1rem;
}

/* Location Page Wrapper - Full Width Reset */
.location-page-content,
.location-page-wrapper {
	max-width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
}

.location-page-content>.wp-block-post-content {
	max-width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
}

/* Ensure all location sections have proper stacking */
.location-hero,
.location-intro,
.location-services,
.location-area,
.location-why,
.location-faq,
.location-cta {
	position: relative;
	z-index: 1;
}

/* ================================
   Service Locations Section
   ================================ */
.service-locations-section {
	background: linear-gradient(180deg, var(--wp--preset--color--slate-900) 0%, var(--wp--preset--color--slate-950) 100%);
	padding: 5rem 1.5rem;
	position: relative;
	overflow: hidden;
}

.service-locations-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 200%;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--wp--preset--color--amber-500), transparent);
}

.service-locations-inner {
	max-width: 80rem;
	margin: 0 auto;
}

.service-locations-header {
	text-align: center;
	margin-bottom: 3rem;
}

.service-locations-badge {
	display: inline-block;
	background: rgba(245, 158, 11, 0.1);
	border: 1px solid rgba(245, 158, 11, 0.3);
	color: var(--wp--preset--color--amber-400);
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 0.5rem 1rem;
	border-radius: 9999px;
	margin-bottom: 1rem;
}

.service-locations-title {
	font-size: 2rem;
	font-weight: 800;
	color: var(--wp--preset--color--white);
	margin: 0 0 1rem 0;
	line-height: 1.2;
}

@media (min-width: 768px) {
	.service-locations-title {
		font-size: 2.5rem;
	}
}

.service-locations-subtitle {
	font-size: 1rem;
	color: var(--wp--preset--color--slate-400);
	margin: 0;
	max-width: 40rem;
	margin-left: auto;
	margin-right: auto;
}

.service-locations-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}

@media (min-width: 640px) {
	.service-locations-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (min-width: 768px) {
	.service-locations-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 1.25rem;
	}
}

@media (min-width: 1024px) {
	.service-locations-grid {
		grid-template-columns: repeat(5, 1fr);
	}
}

.service-location-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 1.25rem 1rem;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 0.75rem;
	text-decoration: none;
	transition: all var(--transition-normal);
	position: relative;
	overflow: hidden;
}

.service-location-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), transparent);
	opacity: 0;
	transition: opacity var(--transition-normal);
}

.service-location-card:hover {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(245, 158, 11, 0.4);
	transform: translateY(-4px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-location-card:hover::before {
	opacity: 1;
}

.service-location-card .location-name {
	font-size: 1rem;
	font-weight: 600;
	color: var(--wp--preset--color--white);
	margin-bottom: 0.25rem;
	position: relative;
	z-index: 1;
	transition: color var(--transition-normal);
}

.service-location-card:hover .location-name {
	color: var(--wp--preset--color--amber-400);
}

.service-location-card .location-county {
	font-size: 0.75rem;
	color: var(--wp--preset--color--slate-500);
	position: relative;
	z-index: 1;
}
/* === 11. SINGLE POST STYLES === */
.single-post {
    max-width: 800px;
    margin: 0 auto;
}

.single-post .entry-header {
    margin-bottom: 40px;
    text-align: center;
}

.single-post .entry-meta {
    color: var(--color-primary-orange);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.single-post .entry-title {
    font-size: 42px;
    color: var(--color-dark-blue);
    line-height: 1.2;
    margin-bottom: 0;
}

.single-post .post-thumbnail {
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
}

.single-post .post-thumbnail img {
    width: 100%;
    height: auto;
}

.single-post .entry-content {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-text-dark);
}

.single-post .entry-content p {
    margin-bottom: 1.5em;
}

.single-post .entry-content h2,
.single-post .entry-content h3,
.single-post .entry-content h4 {
    margin-top: 2em;
    margin-bottom: 1em;
    color: var(--color-dark-blue);
}

.single-post .entry-content ul,
.single-post .entry-content ol {
    margin-bottom: 1.5em;
    padding-left: 1.5em;
    list-style: disc;
}

.single-post .entry-content li {
    margin-bottom: 0.5em;
}

.single-post .entry-content a {
    color: var(--color-primary-orange);
    text-decoration: underline;
}

.single-post .entry-content a:hover {
    color: var(--color-primary-orange-hover);
}

.single-post .entry-content blockquote {
    border-left: 4px solid var(--color-primary-orange);
    padding-left: 24px;
    margin: 2em 0;
    font-style: italic;
    color: #666;
}

.single-post .entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5em 0;
}

.single-post .entry-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid var(--color-border-gray);
}

.single-post .cat-links {
    font-size: 14px;
    color: #666;
}

.single-post .cat-links a {
    color: var(--color-primary-orange);
}

/* Responsive */
@media (max-width: 767px) {
    .single-post .entry-title {
        font-size: 28px;
    }
    
    .single-post .entry-content {
        font-size: 16px;
    }
}
/* === 11. SINGLE POST STYLES === */
.single-post {
    max-width: 800px;
    margin: 0 auto;
}

.single-post .entry-header {
    margin-bottom: 40px;
}

.single-post .entry-meta {
    color: var(--color-primary-orange);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.single-post .entry-title {
    font-size: 42px;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 0;
}

.single-post .post-thumbnail {
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
}

.single-post .entry-content {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-text-light);  /* Light gray/white text */
}

.single-post .entry-content p {
    margin-bottom: 1.5em;
    color: var(--color-text-light);
}

.single-post .entry-content h2,
.single-post .entry-content h3,
.single-post .entry-content h4 {
    margin-top: 2em;
    margin-bottom: 1em;
    color: var(--color-white);
}

.single-post .entry-content ul,
.single-post .entry-content ol {
    margin-bottom: 1.5em;
    padding-left: 1.5em;
    list-style: disc;
    color: var(--color-text-light);
}

.single-post .entry-content a {
    color: var(--color-primary-orange);
    text-decoration: underline;
}

.single-post .entry-content blockquote {
    border-left: 4px solid var(--color-primary-orange);
    padding-left: 24px;
    margin: 2em 0;
    font-style: italic;
    color: #bbb;
}

.single-post .entry-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.single-post .cat-links {
    font-size: 14px;
    color: #bbb;
}

.single-post .cat-links a {
    color: var(--color-primary-orange);
}

/* Responsive */
@media (max-width: 767px) {
    .single-post .entry-title {
        font-size: 28px;
    }
    
    .single-post .entry-content {
        font-size: 16px;
    }
}
/* === 11. SINGLE POST STYLES === */
.single-post {
    max-width: 800px;
    margin: 0 auto;
}

.single-post .entry-header {
    margin-bottom: 40px;
    text-align: center;
}

.single-post .entry-meta {
    color: var(--color-primary-orange);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.single-post .entry-title {
    font-size: 42px;
    color: var(--color-dark-blue);
    line-height: 1.2;
    margin-bottom: 0;
}

.single-post .post-thumbnail {
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
}

.single-post .post-thumbnail img {
    width: 100%;
    height: auto;
}

.single-post .entry-content {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-text-dark);
}

.single-post .entry-content p {
    margin-bottom: 1.5em;
}

.single-post .entry-content h2,
.single-post .entry-content h3,
.single-post .entry-content h4 {
    margin-top: 2em;
    margin-bottom: 1em;
    color: var(--color-dark-blue);
}

.single-post .entry-content ul,
.single-post .entry-content ol {
    margin-bottom: 1.5em;
    padding-left: 1.5em;
    list-style: disc;
}

.single-post .entry-content li {
    margin-bottom: 0.5em;
}

.single-post .entry-content a {
    color: var(--color-primary-orange);
    text-decoration: underline;
}

.single-post .entry-content a:hover {
    color: var(--color-primary-orange-hover);
}

.single-post .entry-content blockquote {
    border-left: 4px solid var(--color-primary-orange);
    padding-left: 24px;
    margin: 2em 0;
    font-style: italic;
    color: #666;
}

.single-post .entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5em 0;
}

.single-post .entry-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid var(--color-border-gray);
}

.single-post .cat-links {
    font-size: 14px;
    color: #666;
}

.single-post .cat-links a {
    color: var(--color-primary-orange);
}

/* Responsive */
@media (max-width: 767px) {
    .single-post .entry-title {
        font-size: 28px;
    }
    
    .single-post .entry-content {
        font-size: 16px;
    }
}
/* === 12. BLOG LISTING STYLES === */
.blog-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 10rem 1.5rem 4rem;
    text-align: center;
}

.blog-hero-inner {
    max-width: 50rem;
    margin: 0 auto;
}

.blog-hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 1rem 0;
    letter-spacing: 0.02em;
}

.blog-hero-subtitle {
    font-size: 1.125rem;
    color: #94a3b8;
    margin: 0;
}

/* Blog Section */
.blog-section {
    background: #0f172a;
    padding: 4rem 1.5rem 5rem;
}

.blog-inner {
    max-width: 80rem;
    margin: 0 auto;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Blog Card */
.blog-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(245, 158, 11, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.blog-card-image {
    display: block;
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.08);
}

.blog-card-image-placeholder {
    background: linear-gradient(135deg, #1e293b, #334155);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-meta {
    font-size: 0.75rem;
    font-weight: 600;
    color: #f59e0b;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.blog-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 0.75rem 0;
}

.blog-card-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: #f59e0b;
}

.blog-card-excerpt {
    font-size: 0.9375rem;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0 0 1.25rem 0;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: #f59e0b;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-card-link:hover {
    color: #fbbf24;
}

/* Pagination */
.blog-pagination {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

.blog-pagination .nav-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.blog-pagination a,
.blog-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-pagination a {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
}

.blog-pagination a:hover {
    background: rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.4);
    color: #f59e0b;
}

.blog-pagination .current {
    background: #f59e0b;
    color: #0f172a;
    font-weight: 700;
}

.no-posts {
    text-align: center;
    color: #94a3b8;
    font-size: 1.125rem;
    padding: 4rem 0;
}