/* 2Man Moving Services — theme colors aligned with logo (dark gray + orange) */

/* Logo palette: dark gray #343434, accent orange #F48C00. Variables used site-wide. */
:root {
  --navy:      #343434;
  --navy-mid:  #4a4a4a;
  --gold:      #f48c00;
  --gold-dark: #d97a00;
  --gold-pale: #fff5eb;
  --white:     #ffffff;
  --off-white: #f8f9fb;
  --gray:      #6b7280;
  --gray-light:#e5e9f0;
  --text:      #374151;
  --radius:    6px;
  --white-space: 4rem;
  --transition-speed: 0.2s ease;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* Skip link: visible on focus for keyboard users */
.skip-link {
	position: absolute;
	top: -100px;
	left: 1rem;
	z-index: 100000;
	padding: 0.6rem 1rem;
	background: var(--navy);
	color: var(--white);
	font-weight: 700;
	text-decoration: none;
	border-radius: var(--radius);
	transition: top 0.2s;
}
.skip-link:focus {
	top: 1rem;
	outline: 3px solid var(--gold);
	outline-offset: 2px;
}
.screen-reader-text { clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); height: 1px; width: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; word-wrap: normal; }
.skip-link.screen-reader-text { clip: auto; clip-path: none; height: auto; width: auto; margin: 0; }

/* Focus visible: keyboard users need a clear focus ring */
a:focus-visible,
button:focus-visible,
.faq-btn:focus-visible {
	outline: 2px solid var(--gold);
	outline-offset: 2px;
}
.btn:focus-visible,
.btn-gold:focus-visible,
.btn-navy:focus-visible,
.btn-quote-sm:focus-visible {
	outline: 2px solid var(--white);
	outline-offset: 2px;
}

body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* Typography */
.heading { font-family: 'Outfit', sans-serif; font-weight: 800; color: var(--navy); line-height: 1.1; letter-spacing: -0.02em; }
.eyebrow { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gold); display: block; margin-bottom: 0.6rem; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 0.875rem; letter-spacing: 0.03em; border-radius: var(--radius); padding: 13px 26px; transition: all 0.22s ease; cursor: pointer; border: none; text-transform: uppercase; }
.btn-gold { background: var(--gold); color: var(--white); box-shadow: 0 4px 14px rgba(244,140,0,0.35); transition: transform var(--transition-speed, 0.2s ease); }
.btn-gold:hover { background: var(--gold-dark); transform: scale(1.03); box-shadow: 0 6px 20px rgba(244,140,0,0.4); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.4); }
.btn-outline-white:hover { border-color: var(--gold); color: var(--gold); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-1px); color: var(--white); }
.btn-lg { padding: 15px 34px; font-size: 0.95rem; }

/* Top bar */
.top-bar { background: var(--navy); padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.top-bar-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0.5rem 1.5rem; }
.top-bar-left { display: flex; align-items: center; flex-wrap: wrap; justify-content: center; gap: 1rem 1.5rem; }
.top-bar-item { display: flex; align-items: center; gap: 6px; font-size: 0.72rem; color: rgba(255,255,255,0.6); font-weight: 500; }
.top-bar-item i { color: var(--gold); font-size: 0.65rem; }
.btn-quote-sm { background: var(--gold); color: var(--white); padding: 7px 16px; border-radius: var(--radius); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; transition: background 0.2s; }
.btn-quote-sm:hover { background: var(--gold-dark); color: var(--white); }

/* Nav */
.nav { position: sticky; top: 0; z-index: 100; background: var(--white); border-bottom: 1px solid var(--gray-light); box-shadow: 0 2px 8px rgba(52,52,52,0.06); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo a { display: flex; align-items: center; gap: 10px; }
/* Custom logo in header: fit nav height */
.nav .custom-logo-link { display: flex; align-items: center; }
.nav .custom-logo-link img.custom-logo,
.nav .theme-logo { max-height: 52px; width: auto; height: auto; object-fit: contain; display: block; }
.logo-box { background: var(--navy); color: var(--gold); font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 1.1rem; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius); letter-spacing: -0.03em; flex-shrink: 0; }
.logo-wordmark { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1rem; color: var(--navy); }
.logo-tagline { font-size: 0.6rem; font-weight: 600; color: var(--gray); text-transform: uppercase; letter-spacing: 0.08em; }
.nav-drawer { display: flex; align-items: center; gap: 2.5rem; }
.nav-menu { display: flex; align-items: center; gap: 2.5rem; list-style: none; margin: 0; padding: 0; }
.nav-menu > li { position: relative; }
.nav-menu > li > a { font-size: 0.875rem; font-weight: 600; color: var(--text); transition: color 0.18s; position: relative; padding-bottom: 2px; }
.nav-menu a { font-size: 0.875rem; font-weight: 600; color: var(--text); transition: color 0.18s; position: relative; padding-bottom: 2px; }
.nav-menu a::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transition: transform 0.2s; }
.nav-menu a:hover { color: var(--navy); }
.nav-menu a:hover::after { transform: scaleX(1); }
/* Dropdown (desktop) */
.nav-menu .sub-menu { position: absolute; top: 100%; left: 0; margin-top: 6px; min-width: 200px; background: var(--white); border: 1.5px solid var(--gray-light); border-radius: 10px; box-shadow: 0 4px 20px rgba(52,52,52,0.1); padding: 0.5rem 0; list-style: none; opacity: 0; visibility: hidden; transition: opacity 0.2s ease, visibility 0.2s ease; z-index: 50; }
.nav-menu li:hover > .sub-menu,
.nav-menu li:focus-within > .sub-menu { opacity: 1; visibility: visible; }
.nav-menu .sub-menu a { padding: 0.5rem 1.25rem; display: block; font-size: 0.875rem; font-weight: 600; color: var(--navy); }
.nav-menu .sub-menu a::after { display: none; }
.nav-menu .sub-menu a:hover { color: var(--gold); }
.nav-drawer-header { display: none; }
.nav-drawer .submenu-toggle { display: none; }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-tel { display: flex; align-items: center; gap: 6px; font-size: 0.9rem; font-weight: 700; color: var(--navy); }
.nav-tel:hover { color: var(--navy); }
.nav-tel i { color: var(--gold); }
@media (min-width: 769px) {
	.nav-drawer .nav-tel { display: none; }
	.nav-inner { position: relative; }
	.nav-drawer { flex: 1; justify-content: flex-end; }
	.nav-drawer .nav-menu { position: absolute; left: 50%; transform: translateX(-50%); }
}

/* Mobile menu toggle */
.menu-toggle { display: none; width: 44px; height: 44px; padding: 0; background: none; border: 0; cursor: pointer; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.menu-toggle-bar { width: 22px; height: 2px; background: var(--navy); border-radius: 1px; transition: transform .2s, opacity .2s; }
.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
	position: relative;
	min-height: 620px;
	display: flex;
	align-items: center;
	overflow: hidden;
	background-color: #2d2d2d;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.hero:not(.hero-has-bg) {
	background-image: linear-gradient(rgba(52,52,52,0.92), rgba(30,30,30,0.94)), linear-gradient(135deg, #343434 0%, #4a4a4a 30%, #5a5a5a 60%, #343434 100%);
}
.hero-video-wrap {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}
.hero-video {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	object-fit: cover;
}
/* Hero overlay: diagonal gradient (same as reference) over video/image so background stays visible but muted; text stays readable. */
.hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(26, 26, 26, 0.7) 100%);
}
/* With video: same overlay so video shows through with consistent look. */
.hero-has-video .hero-overlay {
	background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(26, 26, 26, 0.7) 100%);
}
.hero-has-video .hero-inner {
	text-shadow: 0 2px 4px rgba(0,0,0,0.5), 0 4px 12px rgba(0,0,0,0.35);
}
.hero-has-video .hero-inner h1,
.hero-has-video .hero-inner .hero-sub,
.hero-has-video .hero-inner h1 span {
	text-shadow: 0 2px 6px rgba(0,0,0,0.55), 0 4px 16px rgba(0,0,0,0.4);
}
.hero-has-video .hero-inner .hero-ribbon {
	text-shadow: none;
}
/* Section decorations: blob, truck, boxes (hand-coded SVG) — layer behind content, 30% dimmer */
.section-deco { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.section-deco .deco-wrap { position: absolute; display: block; line-height: 0; filter: brightness(0.7); }
.section-deco .deco-boxes-wrap { opacity: 0.28; }
.section-deco .deco-blob-wrap { opacity: 0.32; }
.section-deco .deco-blob-wrap.deco-blob--soft { opacity: 0.2; }
.section-deco .deco-blob-wrap.deco-blob--light { opacity: 0.22; color: rgba(255,255,255,0.12); }
.section-deco .deco-blob-wrap.deco-blob--accent { color: rgba(244,140,0,0.12); }
.section-deco .deco-svg { display: block; width: 100%; height: 100%; }
.section-deco ~ .container { position: relative; z-index: 1; }
.services-section,
.why-section { position: relative; }
/* Two-blob decorative: primary (top-right) + secondary (bottom-left) */
.partners-deco .deco-blob--primary { top: 8%; right: 2%; width: min(300px, 44vw); color: rgba(52,52,52,0.09); }
.partners-deco .deco-blob--secondary { bottom: 10%; left: -2%; width: min(240px, 36vw); color: rgba(244,140,0,0.08); }
.services-deco .deco-blob--primary { bottom: 12%; left: 2%; width: min(280px, 42vw); color: rgba(52,52,52,0.09); }
.services-deco .deco-blob--secondary { top: 10%; right: -2%; width: min(220px, 34vw); color: rgba(244,140,0,0.07); }
.blog-preview-deco .deco-blob--primary { bottom: 12%; left: 2%; width: min(260px, 38vw); color: rgba(244,140,0,0.09); }
.blog-preview-deco .deco-blob--secondary { top: 15%; right: 2%; width: min(200px, 30vw); color: rgba(52,52,52,0.08); }
/* Home: quote strip, planning, areas, truck banner, testimonials */
.quote-strip { position: relative; overflow: hidden; }
.quote-strip-deco .deco-blob-wrap { bottom: -15%; right: -5%; width: min(320px, 50vw); color: rgba(244,140,0,0.14); }
.planning { position: relative; overflow: hidden; }
.planning-deco .deco-blob-wrap { top: 10%; right: 3%; width: min(260px, 40vw); color: rgba(52,52,52,0.08); }
.areas { position: relative; overflow: hidden; }
.areas-deco .deco-blob-wrap { bottom: 15%; left: 2%; width: min(280px, 42vw); color: rgba(244,140,0,0.08); }
.truck-banner { position: relative; overflow: hidden; }
.testimonials { position: relative; overflow: hidden; }
.testimonials-deco .deco-blob-wrap { top: 8%; right: 4%; width: min(300px, 45vw); color: rgba(52,52,52,0.08); }
/* About: values, stats, areas, team, CTA strip (no blob on story/FAQ) */
.about-values-deco .deco-blob--primary { bottom: 15%; left: -3%; width: min(300px, 46vw); color: rgba(52,52,52,0.08); }
.about-stats { position: relative; overflow: hidden; }
.about-stats-deco .deco-blob-wrap { top: 50%; right: 2%; transform: translateY(-50%); width: min(260px, 40vw); }
.about-areas-deco .deco-blob-wrap { bottom: 10%; right: 3%; width: min(280px, 42vw); color: rgba(52,52,52,0.08); }
.about-team { position: relative; overflow: hidden; }
.about-team-deco .deco-blob-wrap { top: 15%; left: 3%; width: min(220px, 34vw); color: rgba(52,52,52,0.06); }
.about-cta-strip { position: relative; overflow: hidden; }
.about-cta-strip-deco .deco-blob-wrap { bottom: -10%; left: -5%; width: min(300px, 48vw); }
/* Services page: overview, trust, areas */
.services-overview-deco .deco-blob--primary { bottom: 10%; left: 2%; width: min(280px, 42vw); color: rgba(52,52,52,0.08); }
.services-overview-deco .deco-blob--secondary { top: 12%; right: 2%; width: min(240px, 36vw); color: rgba(244,140,0,0.07); }
.services-trust-signals { position: relative; overflow: hidden; }
.services-trust-deco .deco-blob-wrap { top: 50%; right: 2%; transform: translateY(-50%); width: min(260px, 38vw); color: rgba(52,52,52,0.07); }
.services-areas-block { position: relative; overflow: hidden; }
.services-areas-deco .deco-blob-wrap { bottom: 15%; right: 3%; width: min(280px, 42vw); }
/* Where we serve: card list */
.where-we-serve-list { position: relative; overflow: hidden; }
.where-we-serve-list-deco .deco-blob--primary { top: 10%; right: 2%; width: min(300px, 44vw); color: rgba(52,52,52,0.08); }
.where-we-serve-list-deco .deco-blob--secondary { bottom: 12%; left: 2%; width: min(240px, 36vw); color: rgba(244,140,0,0.07); }

.hero-inner { position: relative; z-index: 2; text-align: center; max-width: 1200px; margin: 0 auto; padding: 5rem 2rem 4rem; }
.hero-ribbon { display: inline-block; background: var(--gold); color: var(--navy); font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; padding: 5px 20px; border-radius: 999px; margin-bottom: 1.5rem; }
.hero h1 { font-family: 'Outfit', sans-serif; font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 900; color: var(--white); line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 1.25rem; }
.hero h1 span { color: var(--gold); display: block; }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.72); max-width: 600px; margin: 0 auto 2.5rem; line-height: 1.75; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 3.5rem; }
.hero-stats { display: flex; justify-content: center; flex-wrap: wrap; gap: 0; border-top: 1px solid rgba(255,255,255,0.12); padding-top: 2.5rem; }
.hero-stat { padding: 0 3rem; border-right: 1px solid rgba(255,255,255,0.12); text-align: center; }
.hero-stat:last-child { border-right: none; }
.hero-stat-num { font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 2.2rem; color: var(--white); display: block; line-height: 1; }
.hero-stat-label { font-size: 0.68rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; margin-top: 4px; }

/* Trust bar */
.trust-bar { background: var(--white); border-bottom: 1px solid var(--gray-light); padding: 2.25rem 0; box-shadow: 0 2px 8px rgba(52,52,52,0.04); }
.trust-bar .container { max-width: 1100px; padding-left: 1.5rem; padding-right: 1.5rem; }
.trust-bar-grid { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.5rem 1.5rem; }
.trust-item { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.75rem; border-right: 1px solid var(--gray-light); flex: 1; min-width: 200px; max-width: 260px; }
.trust-item:last-child { border-right: none; }
.trust-icon { width: 44px; height: 44px; flex-shrink: 0; background: var(--gold-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.trust-icon i { color: var(--gold); font-size: 0.95rem; }
.trust-text { line-height: 1.45; min-width: 0; }
.trust-text strong { display: block; font-size: 0.9375rem; font-weight: 700; color: var(--navy); margin-bottom: 0.15em; }
.trust-text span { font-size: 0.8125rem; color: var(--gray); }

/* Services */
.services-section { padding: 5.5rem 0; background: var(--off-white); }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header .heading { font-size: clamp(1.8rem, 3.5vw, 2.4rem); margin-top: 0.4rem; }
.section-header p { font-size: 0.92rem; color: var(--gray); margin-top: 0.75rem; max-width: 500px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.services-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.25rem; }
.services-row--three { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.services-subsection-title { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.25rem; color: var(--navy); margin: 2.5rem 0 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--gold); }
.services-subsection-title:first-of-type { margin-top: 0; }
.svc-card { background: var(--white); border: 1.5px solid var(--gray-light); border-radius: 10px; padding: 2rem 1.25rem; text-align: center; transition: all 0.25s ease; position: relative; overflow: hidden; }
.svc-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: center; transition: transform 0.3s ease; }
.svc-card:hover { border-color: var(--gold); box-shadow: 0 4px 20px rgba(52,52,52,0.1); transform: translateY(-5px); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-icon { width: 60px; height: 60px; margin: 0 auto 1rem; background: var(--gold-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background 0.25s; }
.svc-icon i { color: var(--gold); font-size: 1.3rem; transition: color 0.25s; }
.svc-card:hover .svc-icon { background: var(--gold); }
.svc-card:hover .svc-icon i { color: var(--white); }
.svc-card h3 { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 0.92rem; color: var(--navy); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.6rem; }
.svc-card p { font-size: 0.78rem; color: var(--gray); line-height: 1.65; margin-bottom: 1rem; }
.svc-link { font-size: 0.75rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 0.06em; display: inline-flex; align-items: center; gap: 4px; }
.svc-link:hover { color: var(--gold-dark); }
.svc-link i { font-size: 0.6rem; transition: transform 0.2s; }
.svc-card:hover .svc-link i { transform: translateX(3px); }

/* Service cards with image (main Services page) — link to dedicated service page */
.svc-card--with-image { padding: 0; }
.svc-card--with-image .svc-card-link { display: flex; flex-direction: column; height: 100%; text-decoration: none; color: inherit; }
.svc-card--with-image .svc-card-link:hover { color: inherit; }
.svc-card--with-image .svc-card-image-wrap { aspect-ratio: 4/3; overflow: hidden; background: var(--gray-light); border-radius: 10px 10px 0 0; }
.svc-card--with-image .svc-card-image { width: 100%; height: 100%; object-fit: cover; display: block; }
.svc-card--with-image .svc-card-image-wrap--placeholder { aspect-ratio: 4/3; min-height: 160px; background: linear-gradient(145deg, var(--gray-light) 0%, var(--off-white) 100%); display: block; }
.svc-card--with-image .svc-card-image-wrap--placeholder .svc-card-image-placeholder { display: block; width: 100%; height: 100%; min-height: 160px; aspect-ratio: 4/3; background: linear-gradient(145deg, #e0e4eb 0%, #f0f2f5 50%, #e5e9f0 100%); }
.svc-card--with-image:hover .svc-card-image-wrap--placeholder .svc-card-image-placeholder { background: linear-gradient(145deg, #d5dae2 0%, #e8ecf1 100%); }
.svc-card--with-image .svc-card-body { padding: 1.25rem 1.25rem 1.5rem; text-align: center; flex: 1; display: flex; flex-direction: column; align-items: center; }
.svc-card--with-image .svc-card-title { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 0.95rem; color: var(--navy); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.5rem; }
.svc-card--with-image .svc-card-desc { font-size: 0.78rem; color: var(--gray); line-height: 1.6; margin-bottom: 0.75rem; flex: 1; text-align: center; }
.svc-card--with-image .svc-link { margin-top: auto; justify-content: center; }
.svc-card--with-image:hover .svc-card-image-wrap--placeholder .svc-icon { background: var(--gold); }
.svc-card--with-image:hover .svc-card-image-wrap--placeholder .svc-icon i { color: var(--white); }

/* Quote strip */
.quote-strip { background: var(--navy); padding: 3rem 0; position: relative; overflow: hidden; }
.quote-strip::before { content: ''; position: absolute; top: -60px; right: -60px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(244,140,0,0.15) 0%, transparent 65%); pointer-events: none; }
.quote-strip-inner { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1.5rem; position: relative; z-index: 1; }
.qs-left h2 { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: clamp(1.4rem, 3vw, 1.9rem); color: var(--white); }
.qs-left h2 span { color: var(--gold); }
.qs-left p { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-top: 4px; }

/* Services hero: quote funnel (Which service? → open MoveSafe modal) */
.services-hero-with-funnel { padding: 3rem 0 4rem; }
.services-hero-with-funnel .services-hero-trust { margin-bottom: 2rem; }
.services-hero-state-select { margin-bottom: 1.5rem; }
.services-hero-state-select .quote-funnel-heading { display: block; margin-bottom: 0.5rem; font-size: 0.95rem; color: rgba(255,255,255,0.85); }
.services-state-select-input { padding: 0.5rem 1rem; font-size: 1rem; border-radius: 4px; border: 2px solid rgba(255,255,255,0.3); background: rgba(255,255,255,0.1); color: var(--white); min-width: 200px; }
.services-state-select-input:focus { border-color: var(--gold); outline: none; }
.quote-funnel-hint .quote-funnel-state-hint { font-size: 0.85rem; opacity: 0.9; }
.quote-funnel-inner { text-align: center; max-width: 600px; margin: 0 auto; }
.quote-funnel-heading { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: clamp(1.2rem, 2.2vw, 1.5rem); color: var(--white); margin: 0 0 1.25rem; line-height: 1.25; }
.services-states-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem 1.25rem; margin-bottom: 1.5rem; }
.services-state-link { color: var(--gold); font-weight: 600; text-decoration: none; }
.services-state-link:hover { text-decoration: underline; }
.quote-funnel-options { display: grid; grid-template-columns: 1fr; gap: 0.5rem; margin-bottom: 1.25rem; }
@media (min-width: 480px) { .quote-funnel-options { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 640px) { .quote-funnel-options { grid-template-columns: repeat(3, 1fr); gap: 0.6rem; } }
.quote-funnel-option { display: block; width: 100%; padding: 0.75rem 1rem; font-size: 0.875rem; font-weight: 600; text-align: center; color: var(--white); background: rgba(255,255,255,0.08); border: 2px solid rgba(255,255,255,0.35); border-radius: var(--radius); cursor: pointer; transition: border-color 0.2s, background 0.2s, color 0.2s; }
.quote-funnel-option:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.15); color: var(--white); }
.quote-funnel-option.is-selected { border-color: var(--gold); background: rgba(244,140,0,0.25); color: var(--white); box-shadow: 0 0 0 1px var(--gold); }
.quote-funnel-confirm { margin-bottom: 0; }
.quote-funnel-confirm:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.quote-funnel-hint { margin: 0; }

/* Quote modal (MoveSafe widget-only popup, expanded) */
.quote-modal { position: fixed; inset: 0; z-index: 100000; display: flex; align-items: center; justify-content: center; padding: 0.75rem; visibility: hidden; opacity: 0; transition: visibility 0.25s, opacity 0.25s; }
.quote-modal.is-open { visibility: visible; opacity: 1; }
.quote-modal-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.6); cursor: pointer; }
.quote-modal-dialog { position: relative; width: 100%; max-width: min(960px, 96vw); height: 90vh; max-height: 90vh; background: var(--white); border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,0.35); display: flex; flex-direction: column; overflow: hidden; }
.quote-modal-header { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.25rem; border-bottom: 1px solid var(--gray-light); flex-shrink: 0; }
.quote-modal-title { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.15rem; color: var(--navy); margin: 0; }
.quote-modal-close { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border: none; background: transparent; color: var(--gray); border-radius: var(--radius); cursor: pointer; transition: background 0.2s, color 0.2s; }
.quote-modal-close:hover { background: var(--gray-light); color: var(--navy); }
.quote-modal-body { flex: 1; min-height: 0; overflow: auto; display: flex; flex-direction: column; }
.quote-modal-body iframe { width: 100%; min-height: 600px; height: 700px; flex: 1; display: block; border: 0; }

/* Why Us */
.why-section { padding: 6rem 0; background: var(--off-white); }
.why-grid { display: grid; gap: 3rem; align-items: center; }
.why-grid .why-image-wrap { order: 1; }
.why-grid .why-content { order: 0; }
.why-image { width: 100%; height: auto; border-radius: 12px; box-shadow: 0 12px 40px rgba(52,52,52,0.15); object-fit: cover; }
.why-content .eyebrow { display: inline-block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 0.75rem; }
.why-content .heading { font-family: 'Outfit', sans-serif; font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 800; color: var(--navy); margin-bottom: 1rem; line-height: 1.2; }
.why-lead { font-size: 1rem; color: var(--text); line-height: 1.75; margin-bottom: 1.5rem; max-width: 540px; }
.why-content .checklist { list-style: none; margin: 0 0 2rem; padding: 0; }
.why-content .checklist li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.95rem; color: var(--text); margin-bottom: 0.75rem; }
.why-content .check-dot { width: 22px; height: 22px; border-radius: 50%; background: var(--gold-pale); color: var(--gold); display: inline-flex; align-items: center; justify-content: center; font-size: 0.7rem; flex-shrink: 0; }
.why-content .check-dot i { color: var(--gold); }
@media (min-width: 900px) {
	.why-grid { grid-template-columns: 1fr 1fr; }
	.why-grid .why-image-wrap { order: 1; }
	.why-grid .why-content { order: 0; }
}
@media (min-width: 900px) and (max-width: 1100px) {
	.why-grid { grid-template-columns: 0.9fr 1fr; }
}

/* Planning */
.planning { padding: 6rem 0; background: var(--white); }
.planning-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.stats-2x2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--gray-light); border: 1px solid var(--gray-light); border-radius: 10px; overflow: hidden; }
.stat-cell { background: var(--white); padding: 2.5rem 2rem; transition: background 0.2s; }
.stat-cell:hover { background: var(--gold-pale); }
.stat-big { font-family: 'Outfit', sans-serif; font-size: 2.6rem; font-weight: 900; color: var(--gold); display: block; line-height: 1; }
.stat-small { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray); margin-top: 6px; display: block; }
.process-content .heading { font-size: clamp(1.7rem, 3vw, 2.2rem); margin-bottom: 1rem; }
.process-content .heading span { color: var(--gold); }
.process-intro { font-size: 0.92rem; color: var(--gray); line-height: 1.8; margin-bottom: 2rem; }
.checklist { list-style: none; margin-bottom: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.checklist li { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; font-weight: 600; color: var(--text); }
.check-dot { width: 20px; height: 20px; flex-shrink: 0; background: #22c55e; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.check-dot i { color: white; font-size: 0.55rem; }

/* Homepage blog preview (3 posts with images) */
.blog-preview { padding: 5.5rem 0; background: var(--off-white); position: relative; overflow: hidden; }
.blog-preview .section-header .eyebrow { color: var(--gold); }
.blog-preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.blog-preview-card { background: var(--white); border: 1.5px solid var(--gray-light); border-radius: 10px; overflow: hidden; transition: all 0.25s ease; }
.blog-preview-card:hover { border-color: var(--gold); box-shadow: 0 4px 20px rgba(52,52,52,0.1); transform: translateY(-4px); }
.blog-preview-link { display: block; text-decoration: none; color: inherit; height: 100%; }
.blog-preview-link:hover { color: inherit; }
.blog-preview-image-wrap { aspect-ratio: 16/10; overflow: hidden; background: var(--gray-light); }
.blog-preview-image { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-preview-image-wrap--placeholder { display: flex; align-items: center; justify-content: center; background: var(--gold-pale); }
.blog-preview-placeholder-icon { font-size: 2.5rem; color: var(--gold); }
.blog-preview-body { padding: 1.25rem 1.25rem 1.5rem; }
.blog-preview-date { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gold); display: block; margin-bottom: 0.5rem; }
.blog-preview-title { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1rem; color: var(--navy); margin: 0 0 0.5rem; line-height: 1.3; }
.blog-preview-excerpt { font-size: 0.875rem; color: var(--gray); line-height: 1.6; margin: 0 0 0.75rem; }
.blog-preview-more { font-size: 0.8rem; font-weight: 700; color: var(--gold); display: inline-flex; align-items: center; gap: 6px; }
.blog-preview-card:hover .blog-preview-more { color: var(--gold-dark); }
.blog-preview-more i { font-size: 0.65rem; transition: transform 0.2s; }
.blog-preview-card:hover .blog-preview-more i { transform: translateX(4px); }
.blog-preview-cta { text-align: center; margin: 2rem 0 0; }
.blog-preview-empty { text-align: center; color: var(--gray); margin: 2rem 0 0; }
@media (max-width: 960px) {
	.blog-preview-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
}

/* Areas */
.areas { padding: 6rem 0; background: var(--off-white); }
.areas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.areas-content .heading { font-size: clamp(1.7rem, 3vw, 2.2rem); margin-bottom: 1rem; }
.areas-content .heading span { color: var(--gold); }
.areas-content p { font-size: 0.92rem; color: var(--gray); line-height: 1.8; margin-bottom: 1.75rem; }
.areas-types { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.area-type { display: flex; align-items: center; gap: 10px; background: var(--white); border: 1px solid var(--gray-light); border-radius: var(--radius); padding: 0.9rem 1rem; transition: border-color 0.2s; }
.area-type:hover { border-color: var(--gold); }
.area-type-icon { width: 32px; height: 32px; background: var(--gold-pale); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.area-type-icon i { color: var(--gold); font-size: 0.75rem; }
.area-type-text strong { font-size: 0.85rem; font-weight: 700; color: var(--navy); display: block; }
.area-type-text span { font-size: 0.75rem; color: var(--gray); }
.areas-mini-stats { display: flex; gap: 2rem; margin-top: 1.5rem; }
.ams-item strong { font-family: 'Outfit', sans-serif; font-size: 1.5rem; font-weight: 900; color: var(--gold); display: block; }
.ams-item span { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray); font-weight: 600; }
.map-visual { background: var(--white); border: 1.5px solid var(--gray-light); border-radius: 12px; padding: 2rem; box-shadow: 0 4px 20px rgba(52,52,52,0.1); }
.map-legend { display: flex; gap: 1.5rem; margin-top: 1rem; padding-top: 0.75rem; border-top: 1px solid var(--gray-light); flex-wrap: wrap; }
.map-legend span { display: flex; align-items: center; gap: 6px; font-size: 0.7rem; color: var(--gray); font-weight: 600; }
.map-legend-dot { width: 10px; height: 10px; border-radius: 50%; }

/* US map (Service Areas) — badge, routes, markers, legend */
.map-visual--us .map-visual__label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray); margin-bottom: 1rem; }
.map-visual--us .map-visual__wrapper { position: relative; width: min(980px, 100%); margin: 0 auto; }
.map-visual--us .map-visual__wrapper svg { width: 100%; height: auto; display: block; }
.map-visual--us .map-visual__badge {
  position: absolute; top: 10px; right: 10px;
  background: var(--gold); color: var(--white);
  font-weight: 700; font-size: 14px; padding: 10px 18px;
  border-radius: 999px; box-shadow: 0 10px 25px rgba(244,140,0,0.25);
  z-index: 5;
}
.map-visual--us .state { opacity: 0.9; transition: opacity 200ms ease; }
.map-visual--us .state:hover { opacity: 1; }
.map-visual--us .route-line {
  fill: none; stroke: var(--gold); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; opacity: 0.95;
  stroke-dasharray: 6 8; animation: routeMove 3.8s linear infinite;
  filter: drop-shadow(0 2px 6px rgba(244,140,0,0.25));
}
.map-visual--us .route-ny { animation-duration: 2.8s; }
.map-visual--us .route-pa { animation-duration: 3.2s; }
.map-visual--us .route-ca { animation-duration: 4.8s; opacity: 0.9; }
.map-visual--us .route-tx { animation-duration: 3.7s; }
@keyframes routeMove { to { stroke-dashoffset: -140; } }
.map-visual--us .marker-home { cursor: pointer; transform-origin: center; animation: homePulse 2.4s ease-in-out infinite; }
.map-visual--us .marker-home path { filter: drop-shadow(0 10px 14px rgba(0,0,0,0.18)); }
.map-visual--us .marker-destination { cursor: default; transform-origin: center; animation: destPulse 2.6s ease-in-out infinite; }
.map-visual--us .marker-destination circle:first-child { filter: drop-shadow(0 8px 14px rgba(244,140,0,0.18)); }
@keyframes homePulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.02); } }
@keyframes destPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.06); } }
.map-legend--us { display: flex; gap: 1.25rem; justify-content: center; flex-wrap: wrap; margin-top: 1rem; padding-top: 0.75rem; border-top: 1px solid var(--gray-light); }
.map-legend--us .map-legend__item { display: inline-flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--gray); font-weight: 600; }
.map-legend-dot--home { background: var(--gold); }
.map-legend-dot--destination { background: var(--gold); }
@media (max-width: 520px) {
  .map-visual--us .map-visual__badge { font-size: 12px; padding: 8px 14px; }
  .map-legend--us { flex-direction: column; align-items: center; gap: 0.5rem; }
}
@media (prefers-reduced-motion: reduce) {
  .map-visual--us .route-line,
  .map-visual--us .marker-home,
  .map-visual--us .marker-destination { animation: none !important; }
}

/* Truck banner */
.truck-banner {
	position: relative;
	min-height: 340px;
	display: flex;
	align-items: center;
	overflow: hidden;
	background-color: #343434;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.truck-banner:not(.truck-banner-has-bg) {
	background-image: linear-gradient(rgba(52,52,52,0.9), rgba(52,52,52,0.9)), linear-gradient(90deg, #343434 0%, #4a4a4a 50%, #343434 100%);
}
.truck-banner-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(52,52,52,0.88) 0%, rgba(52,52,52,0.82) 50%, rgba(52,52,52,0.88) 100%);
	pointer-events: none;
	z-index: 1;
}
.truck-banner-has-bg .truck-banner-overlay {
	background: transparent;
}
.truck-banner::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(90deg, rgba(244,140,0,0.04) 0, rgba(244,140,0,0.04) 1px, transparent 1px, transparent 80px); z-index: 1; }
.truck-ghost-text { position: absolute; left: -20px; top: 50%; transform: translateY(-50%); font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 10rem; color: rgba(255,255,255,0.04); text-transform: uppercase; letter-spacing: -0.04em; pointer-events: none; user-select: none; white-space: nowrap; }
.truck-banner-inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 4rem 2rem; max-width: 1200px; margin: 0 auto; width: 100%; }
.truck-banner h2 { font-family: 'Outfit', sans-serif; font-weight: 900; font-size: clamp(1.6rem, 4vw, 2.4rem); color: var(--white); margin-bottom: 0.75rem; }
.truck-banner p { font-size: 0.95rem; color: rgba(255,255,255,0.6); max-width: 520px; margin: 0 auto 2rem; line-height: 1.7; }
.truck-banner .gold-bar { width: 48px; height: 3px; background: var(--gold); border-radius: 2px; margin-bottom: 1.75rem; }

/* Testimonials */
.testimonials { padding: 6rem 0; background: var(--white); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.review-card { background: var(--off-white); border: 1.5px solid var(--gray-light); border-radius: 10px; padding: 2rem; transition: all 0.25s; position: relative; }
.review-card::before { content: '"'; position: absolute; top: 1rem; right: 1.5rem; font-family: 'Outfit', sans-serif; font-size: 4rem; color: var(--gray-light); line-height: 1; }
.review-card:hover { border-color: var(--gold); box-shadow: 0 4px 20px rgba(52,52,52,0.1); transform: translateY(-3px); }
.review-card .stars { color: #f59e0b; font-size: 0.8rem; letter-spacing: 2px; margin-bottom: 1rem; }
.review-text { font-size: 0.875rem; color: var(--text); line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; position: relative; z-index: 1; }
.reviewer { display: flex; align-items: center; gap: 10px; }
.reviewer-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700; color: white; flex-shrink: 0; }
.reviewer-name { font-size: 0.82rem; font-weight: 700; color: var(--navy); }
.reviewer-meta { font-size: 0.7rem; color: var(--gray); margin-top: 1px; }
.google-badge { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin-top: 2.5rem; padding: 1.25rem 2rem; background: var(--off-white); border: 1px solid var(--gray-light); border-radius: 10px; max-width: 460px; margin-left: auto; margin-right: auto; }
.google-logo { font-size: 0.85rem; font-weight: 700; color: var(--gray); }
.google-rating { display: flex; flex-direction: column; align-items: center; }
.google-num { font-family: 'Outfit', sans-serif; font-size: 2rem; font-weight: 900; color: var(--navy); line-height: 1; }
.google-stars { color: #f59e0b; font-size: 0.75rem; margin: 3px 0; }
.google-count { font-size: 0.7rem; color: var(--gray); }

/* Partners */
.partners-section { padding: 5.5rem 0; background: var(--white); position: relative; overflow: hidden; }
.partners-section .container { position: relative; z-index: 1; }
.partners-section .section-header p { max-width: 520px; margin-left: auto; margin-right: auto; }
.partners-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; align-items: center; justify-items: center; margin-top: 3rem; max-width: 900px; margin-left: auto; margin-right: auto; }
.partner-item { display: flex; align-items: center; justify-content: center; padding: 0.5rem; text-decoration: none; color: var(--navy); transition: opacity 0.2s; }
.partner-item:hover { opacity: 0.8; }
.partner-logo { max-width: 140px; max-height: 56px; width: auto; height: auto; object-fit: contain; }
.partner-name { font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 700; color: var(--navy); }
.partner-item:hover .partner-name { color: var(--gold); }
@media (max-width: 768px) {
	.partners-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 2rem; }
	.partner-logo { max-width: 120px; max-height: 48px; }
}

/* FAQ (ghost text + gold bar like truck banner, on light section) */
.faq-section { padding: 6rem 0; background: var(--off-white); position: relative; overflow: hidden; }
.faq-section::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(90deg, rgba(244,140,0,0.03) 0, rgba(244,140,0,0.03) 1px, transparent 1px, transparent 80px); z-index: 0; pointer-events: none; }
.faq-ghost-text { position: absolute; left: 20px; top: 50%; transform: translateY(-50%); font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 10rem; color: rgba(244,140,0,0.08); text-transform: uppercase; letter-spacing: -0.08em; pointer-events: none; user-select: none; white-space: nowrap; z-index: 0; }
.faq-section-header { position: relative; z-index: 1; text-align: center; max-width: 780px; margin: 0 auto; }
.faq-section-header .gold-bar { width: 48px; height: 3px; background: var(--gold); border-radius: 2px; margin: 0 auto 1.25rem; }
.faq-section-header .eyebrow { display: block; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 0.5rem; }
.faq-section-header .heading { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: clamp(1.7rem, 3vw, 2.25rem); color: var(--navy); margin: 0; }
.faq-wrap { position: relative; z-index: 1; max-width: 780px; margin: 3rem auto 0; }
.faq-item { background: var(--white); border: 1.5px solid var(--gray-light); border-radius: 8px; margin-bottom: 0.75rem; overflow: hidden; transition: border-color 0.2s; }
.faq-item.open { border-color: var(--gold); }
.faq-btn { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1.2rem 1.5rem; background: none; border: none; cursor: pointer; text-align: left; font-family: 'DM Sans', sans-serif; font-size: 0.92rem; font-weight: 700; color: var(--navy); gap: 1rem; }
.faq-btn:hover { color: var(--gold); }
.faq-toggle { width: 28px; height: 28px; flex-shrink: 0; background: var(--off-white); border: 1.5px solid var(--gray-light); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--gray); transition: all 0.2s; }
.faq-item.open .faq-toggle { background: var(--gold); border-color: var(--gold); color: white; }
.faq-body { display: none; padding: 0 1.5rem 1.25rem; font-size: 0.875rem; color: var(--gray); line-height: 1.85; }
.faq-item.open .faq-body { display: block; }

/* Contact */
.contact-section { padding: 6rem 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr 1fr; gap: 3rem; }
.contact-section h3 { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1rem; color: var(--navy); margin-bottom: 1.25rem; text-transform: uppercase; letter-spacing: 0.05em; }
.contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 1rem; }
.contact-icon { width: 34px; height: 34px; flex-shrink: 0; background: var(--gold-pale); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; }
.contact-icon i { color: var(--gold); font-size: 0.8rem; }
.contact-item-text strong { font-size: 0.82rem; font-weight: 700; color: var(--navy); display: block; }
.contact-item-text span { font-size: 0.78rem; color: var(--gray); }
.contact-item-text a { color: var(--gold); }
.contact-item-text a:hover { color: var(--gold-dark); }
.map-placeholder { background: var(--off-white); border: 1.5px solid var(--gray-light); border-radius: 10px; height: 200px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 8px; color: var(--gray); font-size: 0.8rem; font-weight: 600; }
.map-placeholder i { font-size: 2rem; color: var(--gold); }
.contact-map-embed { border-radius: 10px; overflow: hidden; height: 200px; }
.contact-map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
.hours-row { display: flex; justify-content: space-between; align-items: center; padding: 0.6rem 0; border-bottom: 1px solid var(--gray-light); font-size: 0.82rem; }
.hours-row:last-child { border-bottom: none; }
.hours-day { font-weight: 600; color: var(--navy); }
.hours-time { color: var(--gray); }

/* Footer */
.footer { background: var(--navy); padding: 3rem 0 1.5rem; color: rgba(255,255,255,0.5); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 1.5rem; }
.footer-brand .logo-name { color: var(--white); }
/* Custom logo in footer: compact size */
.footer-brand .custom-logo-link,
.footer-brand .theme-logo-wrap { display: inline-block; line-height: 0; }
.footer-brand .custom-logo-link img.custom-logo,
.footer-brand .theme-logo { max-height: 48px; max-width: 200px; width: auto; height: auto; object-fit: contain; display: block; }
/* Dark logo on dark footer: force light so it’s visible (or use a light logo in Customizer) */
.footer-brand .theme-logo--light-on-dark,
.footer-brand .custom-logo-link.theme-logo--light-on-dark img.custom-logo { filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,0.4); line-height: 1.75; margin: 1rem 0 1.25rem; max-width: 260px; }
.footer-license { font-size: 0.7rem; color: rgba(255,255,255,0.3); font-weight: 600; display: flex; align-items: center; gap: 6px; }
.footer-license i { color: var(--gold); }
.footer-col h4 { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.35); margin-bottom: 1rem; }
.footer-col a { display: block; font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-bottom: 0.55rem; transition: color 0.18s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.75rem; }
.footer-bottom p { font-size: 0.72rem; color: rgba(255,255,255,0.2); }
.footer-bottom-links a { font-size: 0.72rem; color: rgba(255,255,255,0.2); margin-left: 1.5rem; transition: color 0.18s; }
.footer-bottom-links a:hover { color: var(--gold); }

/* Animations */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 0.6s ease forwards; }
.fade-up.d1 { animation-delay: 0.08s; opacity: 0; }
.fade-up.d2 { animation-delay: 0.18s; opacity: 0; }
.fade-up.d3 { animation-delay: 0.28s; opacity: 0; }
.fade-up.d4 { animation-delay: 0.40s; opacity: 0; }
.fade-up.d5 { animation-delay: 0.52s; opacity: 0; }

@media (prefers-reduced-motion: reduce) {
  .fade-up, .fade-up.d1, .fade-up.d2, .fade-up.d3, .fade-up.d4, .fade-up.d5 { animation: none; opacity: 1; }
}

/* Responsive */
@media (max-width: 960px) {
  .planning-grid, .areas-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .services-row { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  .hero-stat { padding: 0 1.5rem; }
  /* Mobile menu overlay */
  .nav-overlay { display: block; position: fixed; inset: 0; background: rgba(52,52,52,0.5); z-index: 98; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.25s ease, visibility 0.25s ease; }
  .nav.menu-open .nav-overlay { opacity: 1; visibility: visible; pointer-events: auto; }
  .nav-drawer { position: fixed; top: 0; right: 0; bottom: 0; left: 0; width: 100%; background: var(--white); flex-direction: column; align-items: stretch; padding: 0; gap: 0; z-index: 99; transform: translateX(100%); transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); overflow: hidden; display: flex; }
  .nav-drawer.is-open { transform: translateX(0); }
  .nav-drawer-header { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.25rem 1rem; border-bottom: 1px solid var(--gray-light); flex-shrink: 0; text-align: left; }
  .nav-drawer .submenu-toggle { display: flex; }
  .nav-drawer-logo { display: flex; align-items: center; }
  .nav-drawer-logo img,
  .nav-drawer-header .custom-logo-link img { max-height: 44px; width: auto; height: auto; object-fit: contain; display: block; }
  .nav-drawer-close { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; padding: 0; background: var(--off-white); border: none; border-radius: var(--radius); color: var(--navy); font-size: 1.1rem; cursor: pointer; transition: background 0.2s, color 0.2s; }
  .nav-drawer-close:hover { background: var(--gold-pale); color: var(--gold); }
  .nav-drawer-close:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
  .nav-drawer .nav-menu { flex-direction: column; gap: 0; padding: 1rem 1.25rem; overflow-y: auto; flex: 1; -webkit-overflow-scrolling: touch; text-align: left; align-items: stretch; }
  .nav-drawer .nav-menu > li { border-bottom: 1px solid var(--gray-light); margin: 0; }
  .nav-drawer .nav-menu > li:last-child { border-bottom: none; }
  .nav-drawer .nav-menu > li > a { padding: 1rem 0; font-size: 1rem; font-weight: 600; color: var(--navy); min-height: 44px; display: flex; align-items: center; justify-content: flex-start; text-align: left; }
  .nav-drawer .nav-menu > li.menu-item-has-children { display: flex; flex-wrap: wrap; }
  .nav-drawer .nav-menu > li.menu-item-has-children > a { flex: 1; min-width: 0; }
  .nav-drawer .submenu-toggle { width: 44px; height: 44px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; padding: 0; background: none; border: none; color: var(--gray); font-size: 0.75rem; cursor: pointer; transition: color 0.2s, transform 0.2s; }
  .nav-drawer .submenu-toggle:hover { color: var(--gold); }
  .nav-drawer .submenu-toggle[aria-expanded="true"] { color: var(--gold); transform: rotate(180deg); }
  .nav-drawer .nav-menu .sub-menu { position: static; opacity: 1; visibility: visible; margin: 0; padding: 0 0 0.75rem 0; border: none; border-left: 3px solid var(--gold-pale); border-radius: 0; box-shadow: none; background: transparent; min-width: 0; width: 100%; overflow: hidden; max-height: 0; transition: max-height 0.3s ease; }
  .nav-drawer .nav-menu > li.menu-item-has-children.submenu-open > .sub-menu { max-height: 500px; }
  .nav-drawer .nav-menu .sub-menu { margin-left: 1rem; padding-left: 0.75rem; }
  .nav-drawer .nav-menu .sub-menu li { border-bottom: none; }
  .nav-drawer .nav-menu .sub-menu a { padding: 0.6rem 0; font-size: 0.9rem; color: var(--gray); min-height: 44px; display: flex; align-items: center; justify-content: flex-start; text-align: left; }
  .nav-drawer .nav-menu .sub-menu a:hover { color: var(--gold); }
  .nav-drawer .nav-right { flex-direction: column; margin: 0; padding: 1.25rem; padding-top: 0; gap: 1rem; border-top: 1px solid var(--gray-light); flex-shrink: 0; text-align: left; align-items: stretch; }
  .nav-drawer .nav-right .nav-tel { justify-content: flex-start; font-size: 1rem; padding: 0.5rem 0; text-align: left; }
  .nav-drawer .nav-right .btn { width: 100%; justify-content: flex-start; min-height: 48px; text-align: left; }
  .menu-toggle { display: flex; }
  .trust-bar-grid { flex-direction: column; gap: 0; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--gray-light); min-width: 0; max-width: none; padding: 1.25rem 1rem; }
  .trust-item:last-child { border-bottom: none; }
  /* Section decos: smaller on tablet */
  .partners-deco .deco-blob--primary { width: min(240px, 40vw); }
  .partners-deco .deco-blob--secondary { width: min(180px, 32vw); }
  .services-deco .deco-blob--primary { width: min(220px, 38vw); }
  .services-deco .deco-blob--secondary { width: min(180px, 30vw); }
  .blog-preview-deco .deco-blob--primary { width: min(220px, 36vw); }
  .blog-preview-deco .deco-blob--secondary { width: min(160px, 28vw); }
  .quote-strip-deco .deco-blob-wrap { width: min(260px, 44vw); }
  .planning-deco .deco-blob-wrap { width: min(220px, 36vw); }
  .areas-deco .deco-blob-wrap { width: min(240px, 38vw); }
  .testimonials-deco .deco-blob-wrap { width: min(260px, 42vw); }
  /* Footer: tighter on tablet */
  .footer { padding: 2.5rem 0 1.25rem; }
  .footer-grid { gap: 2rem; padding-bottom: 2rem; margin-bottom: 1.25rem; }
  .footer-brand p { max-width: none; }
  .nav .custom-logo-link img.custom-logo,
  .nav .theme-logo { max-height: 44px; }
  .footer-brand .custom-logo-link img.custom-logo,
  .footer-brand .theme-logo { max-height: 42px; max-width: 160px; }
}
@media (max-width: 520px) {
  .container { padding-left: 1.25rem; padding-right: 1.25rem; }
  .services-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; padding-bottom: 1.75rem; margin-bottom: 1.25rem; }
  .footer { padding: 2rem 0 1rem; }
  .footer-brand p { font-size: 0.8rem; margin: 0.75rem 0 1rem; }
  .footer-col h4 { font-size: 0.68rem; margin-bottom: 0.75rem; }
  .footer-col a { font-size: 0.8rem; margin-bottom: 0.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.75rem; text-align: left; }
  .footer-bottom p { font-size: 0.7rem; }
  .footer-bottom-links { display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; }
  .footer-bottom-links a { margin-left: 0; font-size: 0.7rem; }
  .nav .custom-logo-link img.custom-logo,
  .nav .theme-logo { max-height: 40px; }
  .footer-brand .custom-logo-link img.custom-logo,
  .footer-brand .theme-logo { max-height: 38px; max-width: 140px; }
  /* Section decos: compact on small phones */
  .partners-deco .deco-blob--primary { width: min(200px, 46vw); top: 5%; right: 0; }
  .partners-deco .deco-blob--secondary { width: min(140px, 28vw); bottom: 8%; left: 0; }
  .services-deco .deco-blob--primary { width: min(180px, 44vw); bottom: 8%; left: 0; }
  .services-deco .deco-blob--secondary { width: min(140px, 28vw); top: 8%; right: 0; }
  .blog-preview-deco .deco-blob--primary { width: min(180px, 44vw); }
  .blog-preview-deco .deco-blob--secondary { width: min(140px, 26vw); }
  .quote-strip-deco .deco-blob-wrap { width: min(220px, 48vw); }
  .planning-deco .deco-blob-wrap { width: min(180px, 42vw); }
  .areas-deco .deco-blob-wrap { width: min(200px, 44vw); }
  .testimonials-deco .deco-blob-wrap { width: min(220px, 48vw); }
}

/* Page / Quote template */
.site-main { min-height: 40vh; }
.quote-page { padding: 4rem 0 3rem; background: var(--off-white); }
.quote-page .container-narrow { max-width: 900px; margin-left: auto; margin-right: auto; padding: 0 2rem; }
.quote-header { text-align: center; margin-bottom: 2rem; }
.quote-header .entry-title { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: clamp(1.5rem, 3vw, 2rem); color: var(--navy); margin-bottom: 0.5rem; }
.quote-intro { font-size: 0.95rem; color: var(--gray); margin: 0; }
.movesafe-widget-wrap { margin-top: 1rem; }
.movesafe-widget-wrap iframe { min-height: 600px; width: 100%; border: 0; display: block; border-radius: var(--radius); }

/* Generic page content */
.content-section { padding: 4rem 0; }
.page-entry { padding: 4rem 0; }
.page-entry .entry-title { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: clamp(1.75rem, 3vw, 2.25rem); color: var(--navy); margin-bottom: 1rem; }
.page-entry .entry-content { font-size: 1rem; color: var(--text); line-height: 1.8; max-width: 72ch; }
.page-entry .entry-content p { margin-bottom: 1rem; }

/* ─── Blog index (home.php) ────────────────────────────────── */
.blog-hero { position: relative; background: var(--navy); color: var(--white); padding: 4rem 0; text-align: center; overflow: hidden; }
.blog-hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #343434 0%, #4a4a4a 50%, #2d2d2d 100%); opacity: 0.97; }
.blog-hero-bg::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 50% at 50% 120%, rgba(244,140,0,0.12) 0%, transparent 50%); pointer-events: none; }
.blog-hero-inner { position: relative; z-index: 1; }
.blog-hero .eyebrow { color: var(--gold); letter-spacing: 0.15em; }
.blog-title { font-family: 'Outfit', sans-serif; font-weight: 900; font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 0.75rem; letter-spacing: -0.02em; line-height: 1.1; }
.blog-title-accent { width: 64px; height: 4px; background: var(--gold); border-radius: 2px; margin: 0 auto 1.5rem; }
.blog-subtitle { font-size: 1.05rem; color: rgba(255,255,255,0.8); max-width: 520px; margin: 0 auto; line-height: 1.6; }
.blog-list { padding: 4rem 0 4rem; background: var(--off-white); }
.posts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2rem; }
.post-card { background: var(--white); border-radius: 14px; overflow: hidden; box-shadow: 0 4px 24px rgba(52,52,52,0.08); border: 1px solid var(--gray-light); transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s; }
.post-card:hover { box-shadow: 0 12px 40px rgba(52,52,52,0.14); transform: translateY(-6px); border-color: rgba(244,140,0,0.3); }
.post-card-image-wrap { position: relative; }
.post-card-image-link { display: block; line-height: 0; background: var(--gray-light); }
.post-card-image { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform 0.4s ease; }
.post-card:hover .post-card-image { transform: scale(1.03); }
.post-card-image-placeholder { min-height: 220px; display: flex; align-items: center; justify-content: center; background: linear-gradient(145deg, var(--gray-light) 0%, var(--off-white) 100%); }
.post-card-placeholder-icon { font-size: 3rem; color: var(--gold); opacity: 0.5; }
.post-card-cat-pills { position: absolute; bottom: 0.75rem; left: 0.75rem; right: 0.75rem; display: flex; flex-wrap: wrap; gap: 0.4rem; }
.post-card-cat-pills a { display: inline-block; padding: 0.25rem 0.65rem; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; background: var(--navy); color: var(--white); border-radius: 999px; transition: background 0.2s, color 0.2s; }
.post-card-cat-pills a:hover { background: var(--gold); color: var(--white); }
.post-card-body { padding: 1.75rem; }
.post-card-meta { font-size: 0.8rem; color: var(--gray); margin-bottom: 0.75rem; }
.post-card-meta i { margin-right: 0.35rem; color: var(--gold); }
.post-card-title { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.2rem; margin-bottom: 0.75rem; line-height: 1.3; }
.post-card-title a { color: var(--navy); transition: color 0.2s; }
.post-card-title a:hover { color: var(--gold); }
.post-card-excerpt { font-size: 0.95rem; color: var(--text); line-height: 1.7; margin-bottom: 1.25rem; }
.post-card-link { font-size: 0.85rem; font-weight: 700; color: var(--gold); display: inline-flex; align-items: center; gap: 8px; padding: 0.5rem 0; border-bottom: 2px solid transparent; transition: border-color 0.2s, color 0.2s; }
.post-card-link:hover { color: var(--gold-dark); border-bottom-color: var(--gold); }
.post-card-link i { font-size: 0.7rem; transition: transform 0.2s; }
.post-card:hover .post-card-link i { transform: translateX(4px); }
.blog-empty { text-align: center; color: var(--gray); padding: 4rem 2rem; background: var(--white); border-radius: 14px; border: 1px dashed var(--gray-light); }
.blog-empty-icon { display: block; font-size: 3rem; color: var(--gold); opacity: 0.6; margin-bottom: 1rem; }
.blog-cta-strip { background: var(--navy); color: var(--white); padding: 2.5rem 0; }
.blog-cta-strip-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; }
.blog-cta-strip-title { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.35rem; color: var(--white); margin-bottom: 0.25rem; }
.blog-cta-strip-text p { font-size: 0.95rem; color: rgba(255,255,255,0.75); margin: 0; }
.pagination { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--gray-light); }
.pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 44px; height: 44px; padding: 0 0.75rem; font-weight: 700; color: var(--navy); background: var(--white); border: 1px solid var(--gray-light); border-radius: var(--radius); transition: all 0.2s; }
.pagination .page-numbers:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-pale); }
.pagination .page-numbers.current { background: var(--gold); color: var(--white); border-color: var(--gold); }
.pagination .page-numbers.dots { border: none; background: none; }
.pagination .prev, .pagination .next { padding: 0 1rem; }

/* Blog layout with fixed sidebar */
.container--with-sidebar { max-width: 1280px; }
.blog-with-sidebar { display: grid; grid-template-columns: 1fr 320px; gap: 2.5rem; align-items: start; }
.blog-main { min-width: 0; }
.blog-sidebar { position: relative; }
.blog-sidebar-sticky { position: sticky; top: 6rem; }
.sidebar-widget { background: var(--white); border-radius: 14px; border: 1px solid var(--gray-light); overflow: hidden; box-shadow: 0 4px 24px rgba(52,52,52,0.06); margin-bottom: 1.5rem; }
.sidebar-cta-inner { padding: 1.75rem; text-align: center; }
.sidebar-cta-icon { display: flex; align-items: center; justify-content: center; width: 56px; height: 56px; margin: 0 auto 1rem; background: var(--gold-pale); color: var(--gold); border-radius: 50%; font-size: 1.5rem; }
.sidebar-cta-title { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.15rem; color: var(--navy); margin-bottom: 0.5rem; }
.sidebar-cta-text { font-size: 0.9rem; color: var(--gray); margin-bottom: 1.25rem; line-height: 1.5; }
.btn-block { width: 100%; justify-content: center; }

/* ─── Single post (single.php) ───────────────────────────────── */
.single-post { padding-bottom: 0; background: var(--white); }
.single-post-breadcrumb { padding: 1rem 0; font-size: 0.85rem; background: var(--off-white); border-bottom: 1px solid var(--gray-light); }
.single-post-breadcrumb .container { display: flex; flex-wrap: wrap; align-items: center; gap: 0.35rem; }
.single-post-breadcrumb a { color: var(--gray); }
.single-post-breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: var(--gray-light); user-select: none; }
.breadcrumb-current { color: var(--navy); font-weight: 600; max-width: 60vw; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.single-post-header { position: relative; padding: 3rem 0 3.5rem; text-align: center; overflow: hidden; }
.single-post-header-bg { position: absolute; inset: 0; background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%); }
.single-post-header .container { position: relative; z-index: 1; }
.single-post-meta { font-size: 0.9rem; color: var(--gray); margin-bottom: 0.75rem; }
.single-post-meta i { margin-right: 0.35rem; color: var(--gold); }
.single-post-sep { margin: 0 0.35rem; }
.single-post-cats a { color: var(--gold); font-weight: 600; }
.single-post-cats a:hover { color: var(--gold-dark); }
.single-post-title { font-family: 'Outfit', sans-serif; font-weight: 900; font-size: clamp(1.85rem, 4.5vw, 3rem); color: var(--navy); line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 0.75rem; max-width: 800px; margin-left: auto; margin-right: auto; }
.single-post-excerpt { font-size: 1.1rem; color: var(--gray); max-width: 640px; margin: 0 auto; line-height: 1.65; }

/* Single post hero (featured image full-bleed) */
.single-post-hero { position: relative; min-height: 380px; display: flex; align-items: flex-end; overflow: hidden; }
.single-post-hero-image { position: absolute; inset: 0; }
.single-post-hero-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.single-post-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.75) 100%); }
.single-post-hero-content { position: relative; z-index: 2; width: 100%; padding: 3rem 0; }
.single-post-meta--light { color: rgba(255,255,255,0.85); }
.single-post-meta--light i { color: var(--gold); }
.single-post-meta--light .single-post-cats a { color: var(--gold); }
.single-post-title--light { color: var(--white); margin-bottom: 0.5rem; }
.single-post-excerpt--light { color: rgba(255,255,255,0.9); }

.single-post-featured { padding: 0 0 2.5rem; }
.container-wide { max-width: 1000px; margin-left: auto; margin-right: auto; padding-left: 2rem; padding-right: 2rem; }
.single-post-image { width: 100%; height: auto; max-height: 480px; object-fit: cover; border-radius: 14px; display: block; box-shadow: 0 12px 40px rgba(52,52,52,0.12); }

/* Single post body: content + sticky sidebar */
.single-post-body { padding: 0 0 2rem; }
.single-post-with-sidebar { display: grid; grid-template-columns: 1fr 320px; gap: 2.5rem; align-items: start; }
.single-post-main { min-width: 0; }
.single-sidebar { position: relative; }
.single-sidebar-inner { position: sticky; top: 6rem; }
.sidebar-widget-title { font-family: 'Outfit', sans-serif; font-size: 0.85rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; color: var(--navy); margin-bottom: 1rem; padding: 1.25rem 1.5rem 0; }
.sidebar-share .sidebar-widget-title { padding-bottom: 0.75rem; }
.share-buttons { display: flex; flex-wrap: wrap; gap: 0.5rem; padding: 0 1.5rem 1.25rem; }
.share-btn { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: var(--radius); color: var(--white); transition: transform 0.2s, opacity 0.2s; }
.share-btn:hover { transform: scale(1.08); opacity: 0.95; }
.share-twitter { background: #1da1f2; }
.share-facebook { background: #1877f2; }
.share-linkedin { background: #0a66c2; }
.share-copy { background: var(--navy); border: 0; cursor: pointer; font-size: 1rem; }
.share-copy-feedback { display: block; font-size: 0.75rem; color: var(--gold); padding: 0 1.5rem 0.5rem; }
.sidebar-recent .sidebar-widget-title { padding: 1.25rem 1.5rem 0; }
.sidebar-recent-list { list-style: none; margin: 0; padding: 0 1.5rem 0.5rem; }
.sidebar-recent-list li { margin-bottom: 0.6rem; }
.sidebar-recent-list a { font-size: 0.9rem; color: var(--text); line-height: 1.4; display: block; transition: color 0.2s; }
.sidebar-recent-list a:hover { color: var(--gold); }
.sidebar-recent-all { display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; font-weight: 700; color: var(--gold); margin: 0 1.5rem 1.25rem; }
.sidebar-recent-all:hover { color: var(--gold-dark); }

.single-post-content { padding: 2.5rem 0 3rem; }
.single-post-content .container-narrow { max-width: none; }
.single-post-content .entry-content { font-size: 1.08rem; line-height: 1.85; color: var(--text); }
.single-post-content .entry-content p { margin-bottom: 1.35rem; }
.single-post-content .entry-content h2 { font-family: 'Outfit', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--navy); margin: 2.5rem 0 1rem; padding-bottom: 0.35rem; border-bottom: 3px solid var(--gold-pale); }
.single-post-content .entry-content h3 { font-family: 'Outfit', sans-serif; font-size: 1.2rem; font-weight: 800; color: var(--navy); margin: 1.75rem 0 0.6rem; }
.single-post-content .entry-content ul, .single-post-content .entry-content ol { margin: 1.25rem 0 1.75rem; padding-left: 1.75rem; }
.single-post-content .entry-content blockquote { margin: 2rem 0; padding: 1.25rem 1.5rem 1.25rem 1.5rem; border-left: 4px solid var(--gold); background: var(--gold-pale); border-radius: 0 var(--radius) var(--radius) 0; font-style: italic; color: var(--navy); }
.single-post-footer { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--gray-light); }
.single-post-tags-wrap { margin-bottom: 1.5rem; }
.single-post-tags-wrap .tags-label { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray); margin-right: 0.75rem; }
.single-post-tag-list { display: inline-flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.5rem; }
.single-post-tag-list .tag-pill a { display: inline-block; padding: 0.35rem 0.85rem; font-size: 0.8rem; font-weight: 600; background: var(--gold-pale); color: var(--navy); border-radius: 999px; transition: background 0.2s, color 0.2s; }
.single-post-tag-list .tag-pill a:hover { background: var(--gold); color: var(--white); }
.single-post-footer-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.single-post-footer-actions .btn { display: inline-flex; align-items: center; gap: 8px; }
.single-post-cta { background: var(--navy); color: var(--white); padding: 3rem 0; text-align: center; }
.single-post-cta-inner { max-width: 520px; margin: 0 auto; }
.single-post-cta-title { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.5rem; color: var(--white); margin-bottom: 0.5rem; }
.single-post-cta p { font-size: 1rem; color: rgba(255,255,255,0.8); margin-bottom: 1.5rem; }
.single-post-cta .btn { margin: 0; }
@media (max-width: 960px) {
	.blog-with-sidebar { grid-template-columns: 1fr; }
	.blog-sidebar-sticky { position: static; }
	.single-post-with-sidebar { grid-template-columns: 1fr; }
	.single-sidebar-inner { position: static; }
}
@media (max-width: 520px) {
	.breadcrumb-current { max-width: 50vw; }
	.single-post-footer-actions { flex-direction: column; align-items: stretch; }
	.single-post-footer-actions .btn { justify-content: center; }
	.single-post-hero { min-height: 300px; }
	.single-post-hero-content { padding: 2rem 0; }
}

/* ─── Fixed quote CTA bar ────────────────────────────────────── */
/* ─── About page (template-about.php) ────────────────────────── */
.about-page { padding-bottom: 0; }
.about-breadcrumb { padding: 0.85rem 0; font-size: 0.85rem; background: var(--off-white); border-bottom: 1px solid var(--gray-light); }
.about-breadcrumb .container { display: flex; flex-wrap: wrap; align-items: center; gap: 0.35rem; }
.about-breadcrumb a { color: var(--gray); }
.about-breadcrumb a:hover { color: var(--gold); }
.about-breadcrumb .breadcrumb-sep { color: var(--gray-light); }
.about-breadcrumb .breadcrumb-current { color: var(--navy); font-weight: 600; }
.about-hero { position: relative; background: var(--navy); color: var(--white); padding: 4rem 0; text-align: center; overflow: hidden; background-size: cover; background-position: center; }
.about-hero.about-hero-has-bg { background-image: linear-gradient(rgba(52,52,52,0.82), rgba(30,30,30,0.88)), var(--about-hero-bg); }
.about-hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #343434 0%, #4a4a4a 50%, #2d2d2d 100%); opacity: 0.97; }
.about-hero.about-hero-has-bg .about-hero-bg { opacity: 0; }
.about-hero-bg::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 50% at 50% 120%, rgba(244,140,0,0.12) 0%, transparent 50%); pointer-events: none; }
.about-hero-inner { position: relative; z-index: 1; }
/* About hero deco: blob + boxes */
.about-hero-deco .deco-blob-wrap { top: 10%; right: -5%; width: min(320px, 50vw); height: auto; color: rgba(244,140,0,0.16); }
.about-hero-deco .deco-boxes-wrap { bottom: 15%; left: 5%; width: min(130px, 22vw); color: rgba(255,255,255,0.12); }
.about-hero .eyebrow { color: var(--gold); letter-spacing: 0.15em; }
.about-title { font-family: 'Outfit', sans-serif; font-weight: 900; font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 0.75rem; letter-spacing: -0.02em; line-height: 1.1; }
.about-title-accent { width: 64px; height: 4px; background: var(--gold); border-radius: 2px; margin: 0 auto 1.5rem; }
.about-subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto; line-height: 1.6; }
.about-hero-trust { font-size: 0.9rem; color: rgba(255,255,255,0.75); margin: 0 auto 1.5rem; font-weight: 600; }
.about-hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 0.5rem; }
/* Our Story section — enhanced UI */
.about-story { padding: 4.5rem 0; background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 12%, var(--white) 100%); position: relative; overflow: hidden; }
.about-story .container-narrow { max-width: 720px; }
.about-story-container { max-width: 1100px; }
.about-story-header { margin-bottom: 0.5rem; }
.about-story-eyebrow { display: block; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 0.35rem; }
.about-story-title { margin-bottom: 1rem; }
.about-story-lead { font-size: 1.15rem; font-weight: 600; color: var(--navy); line-height: 1.65; margin-bottom: 1.5rem; padding: 1rem 1.25rem; border-left: 4px solid var(--gold); background: rgba(244,140,0,0.06); border-radius: 0 var(--radius) var(--radius) 0; }
.about-story-trust { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; list-style: none; margin: 0 0 2rem; padding: 0; }
.about-story-trust li { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; font-weight: 600; color: var(--navy); }
.about-story-trust-icon { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; background: var(--gold-pale); color: var(--gold); border-radius: 8px; font-size: 0.8rem; flex-shrink: 0; }
.about-story-grid { display: grid; gap: 2.5rem; align-items: start; margin-top: 0; }
.about-story-grid { grid-template-columns: 1fr; }
.about-story-image-wrap { order: -1; }
.about-story-image-frame { position: relative; border-radius: 14px; overflow: hidden; box-shadow: 0 16px 48px rgba(52,52,52,0.14); }
.about-story-image-frame::before { content: ''; position: absolute; inset: 0; border: 3px solid var(--gold); border-radius: 14px; pointer-events: none; z-index: 1; opacity: 0.4; }
.about-story-image { width: 100%; height: auto; display: block; object-fit: cover; vertical-align: middle; }
.about-story-content-wrap { min-width: 0; }
.about-story-links { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem; }
.about-story-image-placeholder { display: flex; align-items: center; justify-content: center; min-height: 280px; background: var(--off-white); border: 2px dashed var(--gray-light); border-radius: 14px; padding: 2rem; }
.about-story-image-placeholder-text { font-size: 0.9rem; color: var(--gray); text-align: center; max-width: 260px; }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.about-story-content { font-size: 1.05rem; line-height: 1.85; color: var(--text); }
.about-story-content p { margin-bottom: 1.25rem; }
.about-story-content p:last-child { margin-bottom: 0; }
.about-values-cta { text-align: center; margin-top: 2rem; font-size: 0.95rem; }
.about-values-link { font-weight: 700; color: var(--gold); }
.about-values-link:hover { color: var(--gold-dark); text-decoration: underline; }
.about-values-sep { color: var(--gray-light); margin: 0 0.5rem; }
.about-cta-strip-desc { margin-bottom: 1.25rem; }
.about-cta-strip-btns { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem; }
.about-cta-strip-phone { margin: 0; font-size: 0.95rem; color: rgba(255,255,255,0.85); }
.about-cta-strip-phone a { color: var(--gold); font-weight: 700; }
.about-cta-strip-phone a:hover { text-decoration: underline; }
.about-story-deco .deco-boxes-wrap { bottom: 20%; right: 5%; width: min(120px, 20vw); color: rgba(52,52,52,0.12); }
.about-section-title { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: clamp(1.5rem, 3vw, 2rem); color: var(--navy); margin-bottom: 1.5rem; }
.about-section-title--center { text-align: center; }
.about-section-intro { font-size: 1.05rem; color: var(--gray); max-width: 640px; margin: 0 auto 2.5rem; line-height: 1.7; text-align: center; }
.about-values { padding: 4rem 0; background: var(--off-white); position: relative; overflow: hidden; }
.about-values-deco .deco-blob-wrap { bottom: 12%; left: -3%; width: min(300px, 48vw); color: rgba(52,52,52,0.12); }
.about-values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 2rem; position: relative; z-index: 1; }
.about-value-card { background: var(--white); border-radius: 14px; padding: 2rem 1.5rem; border: 1px solid var(--gray-light); box-shadow: 0 4px 24px rgba(52,52,52,0.06); transition: box-shadow 0.25s, transform 0.25s; }
.about-value-card:hover { box-shadow: 0 8px 32px rgba(52,52,52,0.1); transform: translateY(-3px); }
.about-value-icon { display: flex; align-items: center; justify-content: center; width: 52px; height: 52px; background: var(--gold-pale); color: var(--gold); border-radius: 12px; font-size: 1.35rem; margin-bottom: 1.25rem; }
.about-value-title { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.05rem; color: var(--navy); margin-bottom: 0.5rem; }
.about-value-card p { font-size: 0.9rem; color: var(--text); line-height: 1.65; margin: 0; }
.about-stats { padding: 3rem 0; background: var(--navy); color: var(--white); }
.about-stats-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem 3rem; align-items: center; }
.about-stat { text-align: center; }
.about-stat-num { display: block; font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 2.5rem; color: var(--gold); line-height: 1; margin-bottom: 0.35rem; }
.about-stat-label { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.8); }
.about-stat--license .about-stat-label { font-size: 0.75rem; text-transform: none; letter-spacing: 0; }
.about-areas { padding: 4rem 0; background: var(--white); }
.about-areas-link-wrap { text-align: center; margin: 0 0 1.25rem; }
.about-areas-link { font-weight: 700; color: var(--gold); }
.about-areas-link:hover { color: var(--gold-dark); text-decoration: underline; }
.about-areas-cta { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 1.5rem; }
.about-team { padding: 3rem 0; background: var(--off-white); }
.about-faq { padding: 4rem 0; background: var(--white); }
.about-faq .container-narrow { max-width: 720px; }
.about-faq-list { margin: 1.5rem 0 0; padding: 0; list-style: none; }
.about-faq-item { margin-bottom: 0.5rem; border: 1px solid var(--gray-light); border-radius: var(--radius); overflow: hidden; background: var(--white); transition: border-color 0.2s; }
.about-faq-item[open] { border-color: var(--gold); }
.about-faq-item:last-child { margin-bottom: 0; }
.about-faq-summary { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; padding: 0.75rem 1rem; font-size: 0.9rem; font-weight: 700; color: var(--navy); cursor: pointer; list-style: none; }
.about-faq-summary:hover { background: var(--off-white); }
.about-faq-summary::-webkit-details-marker { display: none; }
.about-faq-summary::marker { content: none; }
.about-faq-summary::after { content: ''; flex-shrink: 0; width: 0.5rem; height: 0.5rem; border-right: 2px solid var(--navy); border-bottom: 2px solid var(--navy); transform: rotate(45deg); margin-top: -0.25rem; transition: transform 0.2s; }
.about-faq-item[open] .about-faq-summary::after { transform: rotate(-135deg); margin-top: 0.2rem; }
.about-faq-item[open] .about-faq-summary { color: var(--gold); }
.about-faq-summary:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.about-faq-answer { margin: 0; padding: 0.75rem 1rem 1rem; font-size: 0.9rem; color: var(--text); line-height: 1.6; border-top: 1px solid var(--gray-light); }
.about-cta-strip { background: var(--navy); color: var(--white); padding: 3rem 0; text-align: center; }
.about-cta-strip-inner { max-width: 520px; margin: 0 auto; }
.about-cta-strip-title { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.5rem; color: var(--white); margin-bottom: 0.5rem; }
.about-cta-strip p { font-size: 1rem; color: rgba(255,255,255,0.8); margin-bottom: 1.5rem; }
@media (min-width: 769px) {
	.about-story-grid { grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: center; }
	.about-story-image-wrap { order: 0; }
}
@media (max-width: 480px) {
	.about-story-trust { flex-direction: column; gap: 0.75rem; }
	.about-story-lead { font-size: 1.05rem; padding: 0.875rem 1rem; }
}
@media (max-width: 960px) {
	.about-values-grid { grid-template-columns: repeat(2, 1fr); }
	.about-hero-deco .deco-blob-wrap { width: min(260px, 48vw); top: 8%; right: -6%; }
	.about-hero-deco .deco-boxes-wrap { width: min(110px, 22vw); bottom: 12%; left: 3%; }
	.about-story-deco .deco-boxes-wrap { width: min(100px, 20vw); bottom: 18%; right: 3%; }
	.about-values-deco .deco-blob-wrap { width: min(260px, 50vw); bottom: 10%; left: -5%; }
}
@media (max-width: 520px) {
	.about-values-grid { grid-template-columns: 1fr; }
	.about-stats-grid { flex-direction: column; gap: 1.5rem; }
	.about-areas-cta { flex-direction: column; align-items: center; }
	.about-hero-deco .deco-blob-wrap { width: min(200px, 52vw); top: 5%; right: -8%; }
	.about-hero-deco .deco-boxes-wrap { width: min(90px, 24vw); bottom: 10%; left: 0; }
	.about-story-deco .deco-boxes-wrap { width: min(85px, 22vw); bottom: 15%; right: 0; }
	.about-values-deco .deco-blob-wrap { width: min(200px, 54vw); bottom: 8%; left: -8%; }
	.about-hero-cta { flex-direction: column; }
	.about-hero-cta .btn { width: 100%; max-width: 280px; justify-content: center; }
	.about-story-links { flex-direction: column; align-items: flex-start; }
	.about-cta-strip-btns { flex-direction: column; }
}

/* ─── Services page (template-services.php) ─────────────────── */
.services-page { padding-bottom: 0; }
.services-breadcrumb { padding: 0.85rem 0; font-size: 0.85rem; background: var(--off-white); border-bottom: 1px solid var(--gray-light); }
.services-breadcrumb .container { display: flex; flex-wrap: wrap; align-items: center; gap: 0.35rem; }
.services-breadcrumb a { color: var(--gray); }
.services-breadcrumb a:hover { color: var(--gold); }
.services-breadcrumb .breadcrumb-sep { color: var(--gray-light); }
.services-breadcrumb .breadcrumb-current { color: var(--navy); font-weight: 600; }
.services-hero { position: relative; background: var(--navy); color: var(--white); padding: 4rem 0; text-align: center; overflow: hidden; background-size: cover; background-position: center; }
.services-hero.services-hero-has-bg { background-image: linear-gradient(rgba(52,52,52,0.82), rgba(30,30,30,0.88)), var(--services-hero-bg); }
.services-hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #343434 0%, #4a4a4a 50%, #2d2d2d 100%); opacity: 0.97; }
.services-hero.services-hero-has-bg .services-hero-bg { opacity: 0; }
.services-hero-bg::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 50% at 50% 120%, rgba(244,140,0,0.12) 0%, transparent 50%); pointer-events: none; }
.services-hero-inner { position: relative; z-index: 1; }
.services-hero-deco .deco-blob-wrap { top: 10%; right: -5%; width: min(300px, 48vw); height: auto; color: rgba(244,140,0,0.15); }
.services-hero-deco .deco-boxes-wrap { bottom: 15%; left: 5%; width: min(125px, 22vw); color: rgba(255,255,255,0.12); }
.services-hero .eyebrow { color: var(--gold); letter-spacing: 0.15em; }
.services-title { font-family: 'Outfit', sans-serif; font-weight: 900; font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 0.75rem; letter-spacing: -0.02em; line-height: 1.1; }
.services-title-accent { width: 64px; height: 4px; background: var(--gold); border-radius: 2px; margin: 0 auto 1.5rem; }
.services-subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto; line-height: 1.6; }
.services-hero-trust { font-size: 0.9rem; color: rgba(255,255,255,0.75); margin: 1rem auto 0; font-weight: 600; }
/* Where We Serve page */
.where-we-serve-hero .services-subtitle { max-width: 720px; }
.where-we-serve-funnel-hero { padding: 4rem 0 5rem; }
.where-we-serve-funnel-hero .services-title { margin-bottom: 1.5rem; }
.services-title-accent-word { color: var(--gold); }
.quote-funnel-bar { display: inline-flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.75rem 1rem; background: var(--white); padding: 1.25rem 1.5rem; border-radius: var(--radius); box-shadow: 0 10px 32px rgba(0,0,0,0.2); margin-top: 1.5rem; }
.route-funnel-select { font-family: 'DM Sans', sans-serif; font-size: 0.9rem; color: var(--navy); background: var(--white); border: 1px solid var(--gray-light); padding: 0.7rem 1rem; border-radius: var(--radius); min-width: 180px; cursor: pointer; }
.route-funnel-select:hover { border-color: var(--gold); }
.route-funnel-select:focus { outline: 2px solid var(--gold); outline-offset: 2px; }
@media (max-width: 640px) {
	.quote-funnel-bar { flex-direction: column; width: 100%; max-width: 320px; }
	.route-funnel-select { min-width: 100%; }
}
.route-log { background: var(--white); border-top: 1px solid var(--gray-light); padding: 1.25rem 0; }
.route-log-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.75rem 1.5rem; font-size: 0.8rem; color: var(--navy); }
.route-log-label { font-weight: 700; margin-right: 0.25rem; }
.route-log-item { opacity: 0.85; }
/* Where We Serve: trust strip — light pill row */
.where-we-serve-trust { padding: 2.5rem 0; background: var(--white); border-bottom: 1px solid var(--gray-light); }
.where-we-serve-trust-title { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray); text-align: center; margin: 0 0 1.25rem; }
.where-we-serve-trust-grid { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.6rem 1rem; max-width: 720px; margin: 0 auto; }
.where-we-serve-trust-pill { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; font-size: 0.85rem; font-weight: 700; color: var(--navy); background: var(--off-white); border-radius: 999px; border: 1px solid var(--gray-light); }
.where-we-serve-trust-pill i { color: var(--gold); font-size: 0.9rem; }

.where-we-serve-list { padding: 4rem 0; background: var(--off-white); }
.where-we-serve-intro { text-align: center; max-width: 720px; margin: 0 auto 1rem; font-size: 1rem; color: var(--text); line-height: 1.65; }
.where-we-serve-stats { text-align: center; margin-bottom: 2rem; font-size: 0.9rem; font-weight: 600; color: var(--gray); }
.where-we-serve-stat-sep { margin: 0 0.5rem; color: var(--gray-light); }
.about-section-title .text-gold { color: var(--gold); }
.where-we-serve-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.75rem; margin-top: 0; }

/* State/area cards — enhanced */
.where-we-serve-card { position: relative; display: block; background: var(--white); border-radius: 14px; padding: 2rem; box-shadow: 0 4px 20px rgba(0,0,0,0.06); border: 1px solid var(--gray-light); scroll-margin-top: 100px; transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s; text-decoration: none; color: inherit; overflow: hidden; }
.where-we-serve-card:hover { border-color: rgba(244,140,0,0.35); box-shadow: 0 12px 40px rgba(0,0,0,0.1); transform: translateY(-4px); }
.where-we-serve-card-accent { position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gray-light); transition: background 0.25s; }
.where-we-serve-card--specialty .where-we-serve-card-accent { background: var(--gold); }
.where-we-serve-card:hover .where-we-serve-card-accent { background: var(--gold); }
.where-we-serve-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; }
.where-we-serve-flag { width: 52px; height: 52px; flex-shrink: 0; border-radius: 10px; object-fit: cover; display: block; border: 1px solid var(--gray-light); transition: box-shadow 0.25s; }
.where-we-serve-card:hover .where-we-serve-flag { box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.where-we-serve-icon { width: 52px; height: 52px; flex-shrink: 0; background: var(--gold-pale); color: var(--gold); border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; font-size: 1.35rem; transition: background 0.25s, color 0.25s; }
.where-we-serve-card:hover .where-we-serve-icon { background: var(--gold); color: var(--white); }
.where-we-serve-card-badge { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 0.35rem 0.65rem; border-radius: 999px; background: var(--off-white); color: var(--navy); }
.where-we-serve-card-badge--specialty { background: rgba(244,140,0,0.15); color: var(--gold-dark); }
.where-we-serve-name { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.35rem; color: var(--navy); margin-bottom: 0.75rem; line-height: 1.2; transition: color 0.2s; }
.where-we-serve-card:hover .where-we-serve-name { color: var(--gold); }
.where-we-serve-desc { font-size: 0.95rem; color: var(--text); line-height: 1.6; margin-bottom: 1.25rem; }
.where-we-serve-link { font-weight: 700; color: var(--gold); font-size: 0.9rem; display: inline-flex; align-items: center; gap: 0.35rem; transition: color 0.2s; }
.where-we-serve-card:hover .where-we-serve-link { color: var(--gold-dark); text-decoration: underline; }
.where-we-serve-link i { font-size: 0.7rem; transition: transform 0.2s; }
.where-we-serve-card:hover .where-we-serve-link i { transform: translateX(4px); }

/* Where We Serve: FAQ */
.where-we-serve-faq { padding: 4rem 0; background: var(--white); }
.where-we-serve-faq .container-narrow { max-width: 720px; margin-left: auto; margin-right: auto; }
.where-we-serve-faq-list { margin: 0; padding: 0; list-style: none; }
.where-we-serve-faq-item { margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--gray-light); }
.where-we-serve-faq-item:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: 0; }
.where-we-serve-faq-q { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.05rem; color: var(--navy); margin: 0 0 0.5rem; }
.where-we-serve-faq-a { font-size: 0.95rem; color: var(--text); line-height: 1.65; margin: 0; padding-left: 0; }

/* State/region page (template-state-serve.php) — State Hub design */
.state-serve-hero .services-subtitle { max-width: 720px; }
.state-serve-hero-with-cta { padding: 4rem 0 4.5rem; }
.state-serve-hero-cta { margin-top: 1.5rem; }
.state-serve-code { font-weight: 600; opacity: 0.9; font-size: 0.85em; }
.state-serve-body { margin-bottom: 2.5rem; }
.state-serve-body ul { margin: 1rem 0; padding-left: 1.5rem; }
.state-serve-body li { margin-bottom: 0.5rem; line-height: 1.6; }
.state-serve-cta { margin-top: 2rem; }
.state-serve-phone { margin: 1rem 0 0; font-size: 0.95rem; }
.state-serve-phone a { font-weight: 700; color: var(--gold); }
.state-serve-phone a:hover { text-decoration: underline; }

/* State hub: two-column layout */
.state-serve-content .container { max-width: 1200px; }
.state-serve-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-top: 0.5rem; }
@media (min-width: 900px) { .state-serve-layout { grid-template-columns: 2fr 1fr; gap: 3rem; align-items: start; } }
.state-serve-main { min-width: 0; }
.state-serve-expertise-title { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: clamp(1.4rem, 2.5vw, 1.75rem); color: var(--navy); margin-bottom: 1.25rem; line-height: 1.2; }
.state-serve-services-title { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.15rem; color: var(--navy); margin: 2rem 0 0.5rem; text-transform: uppercase; letter-spacing: 0.03em; }
.state-serve-services-intro { font-size: 0.95rem; color: var(--text); margin: 0 0 1rem; }
.state-serve-services-list { list-style: none; margin: 0 0 2rem; padding: 0; display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; }
.state-serve-services-list li { margin: 0; }
.state-serve-services-list a { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 600; color: var(--gold); padding: 0.5rem 0; border-bottom: 2px solid transparent; transition: color 0.2s, border-color 0.2s; }
.state-serve-services-list a:hover { color: var(--gold-dark); border-bottom-color: var(--gold); }
.state-serve-services-list a::after { content: '\2192'; font-size: 0.85em; opacity: 0.8; }
.state-serve-hubs-title { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.15rem; color: var(--navy); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.03em; }
.state-serve-service-links { list-style: none; margin: 0 0 1rem; padding: 0; display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; }
.state-serve-service-links li { margin: 0; }
.state-serve-service-links a { color: var(--gold); font-weight: 600; text-decoration: none; }
.state-serve-service-links a:hover { text-decoration: underline; }
.state-serve-services-hub-link { font-weight: 600; color: var(--navy); }
.state-serve-hub-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 0.75rem; margin-bottom: 2.5rem; }
.state-serve-hub-tag { display: block; padding: 0.75rem 1rem; font-size: 0.85rem; font-weight: 600; color: var(--navy); background: var(--off-white); border: 1px solid var(--gray-light); border-radius: var(--radius); text-align: center; }
.state-serve-transit-card { background: var(--navy); color: var(--white); padding: 2rem 1.75rem; border-radius: 12px; margin-bottom: 2rem; }
.state-serve-transit-title { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 1.5rem; }
.state-serve-transit-grid { display: flex; flex-wrap: wrap; gap: 1.5rem 2rem; justify-content: space-between; align-items: flex-start; }
.state-serve-transit-item { display: flex; flex-direction: column; gap: 0.25rem; }
.state-serve-transit-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(255,255,255,0.6); }
.state-serve-transit-value { font-size: 1.15rem; font-weight: 800; color: var(--white); }
.state-serve-reg-box { border-left: 4px solid var(--gold); background: var(--gold-pale); padding: 1.5rem 1.75rem; border-radius: 0 var(--radius) var(--radius) 0; }
.state-serve-reg-title { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--navy); margin-bottom: 0.5rem; }
.state-serve-reg-text { font-size: 0.9rem; color: var(--text); line-height: 1.6; margin: 0; }

/* State hub: sticky sidebar */
.state-serve-sidebar { min-width: 0; }
@media (min-width: 900px) { .state-serve-sidebar { position: sticky; top: 6rem; } }
.state-serve-sidebar-inner { background: var(--off-white); border: 1px solid var(--gray-light); border-radius: 12px; padding: 1.75rem; }
.state-serve-sidebar-title { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--navy); margin-bottom: 1rem; text-align: center; }
.state-serve-testimonial { margin: 0 0 1.5rem; padding: 1.25rem; background: var(--white); border: 1px solid var(--gray-light); border-radius: var(--radius); }
.state-serve-testimonial p { font-size: 0.9rem; font-style: italic; color: var(--text); line-height: 1.55; margin: 0 0 0.5rem; }
.state-serve-testimonial cite { font-size: 0.75rem; font-weight: 700; font-style: normal; color: var(--navy); }
.state-serve-faq-title { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.03em; color: var(--navy); margin-bottom: 0.75rem; }
.state-serve-faq-list { margin: 0 0 1.5rem; padding: 0; list-style: none; }
.state-serve-faq-item { margin-bottom: 0.5rem; border: 1px solid var(--gray-light); border-radius: var(--radius); overflow: hidden; background: var(--white); transition: border-color 0.2s; }
.state-serve-faq-item[open] { border-color: var(--gold); }
.state-serve-faq-item:last-child { margin-bottom: 0; }
.state-serve-faq-summary { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; padding: 0.75rem 1rem; font-size: 0.85rem; font-weight: 700; color: var(--navy); cursor: pointer; list-style: none; }
.state-serve-faq-summary:hover { background: var(--off-white); }
.state-serve-faq-summary::marker { content: none; }
.state-serve-faq-summary::-webkit-details-marker { display: none; }
.state-serve-faq-summary::after { content: ''; flex-shrink: 0; width: 0.5rem; height: 0.5rem; border-right: 2px solid var(--navy); border-bottom: 2px solid var(--navy); transform: rotate(45deg); margin-top: -0.25rem; transition: transform 0.2s; }
.state-serve-faq-item[open] .state-serve-faq-summary::after { transform: rotate(-135deg); margin-top: 0.2rem; }
.state-serve-faq-item[open] .state-serve-faq-summary { color: var(--gold); }
.state-serve-faq-summary:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.state-serve-faq-a { margin: 0; padding: 0.75rem 1rem 1rem; font-size: 0.85rem; color: var(--gray); line-height: 1.55; border-top: 1px solid var(--gray-light); }
.state-serve-sidebar-cta { width: 100%; justify-content: center; margin-top: 0.5rem; }
.state-service-sidebar-links { list-style: none; margin: 0 0 1rem; padding: 0; }
.state-service-sidebar-links li { margin-bottom: 0.5rem; }
.state-service-sidebar-links a { color: var(--navy); font-weight: 600; }
.state-service-sidebar-links a:hover { color: var(--gold); }
/* State+service page: distinct sections and FAQ accordion */
.state-service-block { padding: 2rem 0; }
.state-service-block:first-child { padding-top: 0; }
.state-service-block--alt { background: var(--off-white); padding: 1.75rem 1.25rem; border-radius: var(--radius); border-left: 4px solid var(--gold); }
.state-service-block-eyebrow { display: block; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); margin-bottom: 0.35rem; }
.state-service-block-title { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.15rem; color: var(--navy); margin: 0 0 0.75rem; line-height: 1.25; }
.state-service-block-p { font-size: 0.95rem; color: var(--text); line-height: 1.65; margin: 0; }
.state-service-list { margin: 0 0 0 1.25rem; padding: 0; list-style: disc; }
.state-service-list li { margin-bottom: 0.4rem; line-height: 1.55; color: var(--text); }
.state-service-faq-block .state-serve-faq-list { margin: 1rem 0 0; }
.state-service-faq-block .state-serve-faq-item { margin-bottom: 0.5rem; }
.state-service-faq-block .state-serve-faq-item:last-child { margin-bottom: 0; }
.btn-block { width: 100%; justify-content: center; }
.services-at-a-glance { padding: 2rem 0; background: var(--off-white); border-bottom: 1px solid var(--gray-light); }
.services-glance-text { font-size: 1rem; color: var(--text); line-height: 1.7; margin: 0; text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }
.services-intro { padding: 3rem 0; background: var(--white); }
.services-intro .container-narrow { max-width: 720px; }
.services-intro-content { font-size: 1.05rem; line-height: 1.85; color: var(--text); }
.services-intro-content p { margin-bottom: 1.25rem; }
.services-overview { padding: 5.5rem 0; background: var(--off-white); position: relative; overflow: hidden; }
.services-overview .section-header .eyebrow { color: var(--gold); }
.services-overview-deco .deco-blob-wrap { top: 8%; right: -5%; width: min(300px, 46vw); color: rgba(244,140,0,0.14); }
.services-overview-deco .deco-boxes-wrap { bottom: 12%; left: 4%; width: min(125px, 22vw); color: rgba(52,52,52,0.12); }
.services-detail { padding: 4rem 0; background: var(--white); }
.services-detail .container-narrow { max-width: 800px; }
.service-detail-block { padding: 2.5rem 0; border-bottom: 1px solid var(--gray-light); scroll-margin-top: 100px; }
.service-detail-block:last-child { border-bottom: 0; padding-bottom: 0; }
.service-detail-block:first-child { padding-top: 0; }
.service-detail-icon { width: 56px; height: 56px; background: var(--gold-pale); color: var(--gold); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1.25rem; }
.service-detail-title { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: clamp(1.25rem, 2.5vw, 1.6rem); color: var(--navy); margin-bottom: 1rem; }
.service-detail-content { margin-bottom: 1.5rem; }
.service-detail-content p { font-size: 1rem; color: var(--text); line-height: 1.75; margin-bottom: 1rem; }
.service-detail-list { list-style: none; margin: 0 0 1rem; padding: 0; }
.service-detail-list li { position: relative; padding-left: 1.5rem; margin-bottom: 0.5rem; font-size: 0.95rem; color: var(--text); line-height: 1.6; }
.service-detail-list li::before { content: ''; position: absolute; left: 0; top: 0.5em; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
/* Smooth scroll for in-page anchor links (e.g. Services "Learn more") */
html { scroll-behavior: smooth; }
/* Services FAQ section */
.services-faq { padding: 4rem 0; background: var(--off-white); }
.services-faq-title { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: clamp(1.25rem, 2.5vw, 1.5rem); color: var(--navy); margin-bottom: 1.5rem; text-align: center; }
.services-faq-list { margin: 0 0 2rem; padding: 0; list-style: none; }
.services-faq-item { margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--gray-light); }
.services-faq-item:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: 0; }
.services-faq-q { font-size: 1rem; font-weight: 700; color: var(--navy); margin: 0 0 0.5rem; }
.services-faq-a { font-size: 0.95rem; color: var(--text); line-height: 1.65; margin: 0; padding-left: 0; }
.services-faq-cta { text-align: center; margin: 0; }

/* Services page: trust signals (Fully Licensed, Bonded & Insured, Vetted Teams) */
.services-trust-signals { padding: 4rem 0; background: var(--white); }
.services-trust-signals .trust-bar-grid { justify-content: center; }
.services-trust-signals .trust-item { max-width: 320px; }

/* Services page: Moving Across [State] & Beyond block */
.services-areas-block { padding: 5rem 0; background: var(--white); }
.services-areas-block-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.services-areas-block-inner .eyebrow { display: block; margin-bottom: 0.5rem; }
.services-areas-block-inner .heading { font-size: clamp(1.6rem, 3vw, 2rem); margin-bottom: 1rem; }
.services-areas-block-inner .heading span { color: var(--gold); }
.services-areas-block-p { font-size: 0.95rem; color: var(--gray); line-height: 1.75; margin-bottom: 1.5rem; }
.services-areas-mini-stats { display: flex; justify-content: center; flex-wrap: wrap; gap: 2rem; margin-bottom: 1.5rem; }
.sams-item strong { font-family: 'Outfit', sans-serif; font-size: 1.5rem; font-weight: 900; color: var(--gold); display: block; }
.sams-item span { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray); font-weight: 600; }

/* Services page: specialty banner uses .truck-banner; optional title/desc classes */
.services-specialty-banner .truck-banner-inner { padding: 4rem 2rem; }
.truck-banner-title { font-family: 'Outfit', sans-serif; font-weight: 900; font-size: clamp(1.6rem, 4vw, 2.4rem); color: var(--white); margin-bottom: 0.75rem; }
.truck-banner-desc { font-size: 0.95rem; color: rgba(255,255,255,0.6); max-width: 520px; margin: 0 auto 2rem; line-height: 1.7; }

/* Services page: The 2Man Difference comparison table */
.services-difference { padding: 5rem 0; background: var(--off-white); }
.services-diff-table-wrap { overflow-x: auto; margin-top: 2rem; border-radius: 10px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.services-diff-table { width: 100%; border-collapse: collapse; background: var(--white); font-size: 0.9rem; }
.services-diff-table th { background: var(--navy); color: var(--white); padding: 1rem 1.25rem; text-align: left; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.services-diff-table th:not(:first-child) { text-align: center; }
.services-diff-table td { padding: 1rem 1.25rem; border-bottom: 1px solid var(--gray-light); }
.services-diff-table td:not(:first-child) { text-align: center; }
.services-diff-table tbody tr:last-child td { border-bottom: 0; }
.services-diff-yes { color: var(--gold); font-weight: 700; }
@media (max-width: 640px) {
	.services-diff-table th, .services-diff-table td { padding: 0.75rem 0.5rem; font-size: 0.8rem; }
	.services-areas-mini-stats { gap: 1.5rem; }
}

/* Service detail page (template-service-detail.php) */
.service-detail-page { padding-bottom: 0; }
.service-detail-scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; background: var(--gray-light); z-index: 101; }
.service-detail-scroll-progress-bar { display: block; height: 100%; width: 0; background: var(--gold); transition: width 0.12s ease-out; }
.service-detail-breadcrumb { padding: 0.85rem 0; font-size: 0.85rem; background: var(--off-white); border-bottom: 1px solid var(--gray-light); }
.service-detail-breadcrumb .container { display: flex; flex-wrap: wrap; align-items: center; gap: 0.35rem; }
.service-detail-breadcrumb a { color: var(--gray); }
.service-detail-breadcrumb a:hover { color: var(--gold); }
.service-detail-breadcrumb .breadcrumb-sep { color: var(--gray-light); }
.service-detail-breadcrumb .breadcrumb-current { color: var(--navy); font-weight: 600; }
.service-detail-hero { position: relative; background: var(--navy); color: var(--white); padding: 2.5rem 0; text-align: center; overflow: hidden; background-size: cover; background-position: center; }
.service-detail-hero.service-detail-hero-has-bg { background-image: linear-gradient(rgba(52,52,52,0.82), rgba(30,30,30,0.88)), var(--service-detail-hero-bg); }
.service-detail-hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #343434 0%, #4a4a4a 50%, #2d2d2d 100%); opacity: 0.97; }
.service-detail-hero.service-detail-hero-has-bg .service-detail-hero-bg { opacity: 0; }
.service-detail-hero-bg::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 50% at 50% 120%, rgba(244,140,0,0.12) 0%, transparent 50%); pointer-events: none; }
.service-detail-hero-inner { position: relative; z-index: 1; }
.service-detail-hero .eyebrow { color: var(--gold); letter-spacing: 0.15em; }
.service-detail-hero .service-detail-title { color: var(--white); }
.service-detail-title { font-family: 'Outfit', sans-serif; font-weight: 900; font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 0.75rem; letter-spacing: -0.02em; line-height: 1.1; }
.service-detail-title-accent { width: 64px; height: 4px; background: var(--gold); border-radius: 2px; margin: 0 auto; }
.service-detail-hero-cta { margin: 2rem 0 0; text-align: center; }
.service-detail-hero-cta-btn { margin: 0; }
.service-detail-title-accent-word { color: var(--gold); text-decoration: underline; text-underline-offset: 0.2em; text-decoration-thickness: 4px; }
.service-detail-hero-badges { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.75rem 1.5rem; margin-bottom: 0.5rem; }
.service-detail-hero-rating { font-size: 0.8rem; color: rgba(255,255,255,0.9); display: inline-flex; align-items: center; gap: 0.35rem; }
.service-detail-hero-rating i { color: var(--gold); }
.service-detail-content { padding: 4rem 0; background: var(--white); }
.service-detail-content-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.service-detail-with-sidebar { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: start; }
.service-detail-main { min-width: 0; }
.service-detail-sidebar { min-width: 0; }
.service-detail-sidebar-inner { background: var(--off-white); border: 2px solid var(--gray-light); border-radius: 12px; padding: 1.75rem; box-shadow: 0 2px 8px rgba(52,52,52,0.06); }
.service-detail-sidebar-badge { display: inline-block; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gold); margin-bottom: 0.75rem; }
.service-detail-sidebar-title { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--navy); margin: 0 0 0.75rem; }
.service-detail-sidebar-desc { font-size: 0.9rem; color: var(--text); line-height: 1.55; margin: 0 0 1.25rem; }
.service-detail-sidebar-inner .btn-block { width: 100%; justify-content: center; margin-bottom: 1rem; }
.service-detail-sidebar-trust { font-size: 0.8rem; color: var(--gray); margin: 0; text-align: center; }
@media (min-width: 900px) {
	.service-detail-with-sidebar { grid-template-columns: minmax(0, 1fr) 320px; gap: 3rem; }
	.service-detail-main { max-width: 720px; }
	.service-detail-sidebar { position: sticky; top: 6rem; }
}
@media (max-width: 899px) {
	.service-detail-with-sidebar { order: 0; }
	.service-detail-sidebar { order: 0; }
}
.service-detail-summary { font-size: 1rem; color: rgba(255,255,255,0.9); max-width: 640px; margin: 0 auto 1rem; line-height: 1.6; }
.service-detail-body { font-size: 1.05rem; line-height: 1.85; color: var(--text); }
.service-detail-body p { margin-bottom: 1.25rem; }
.service-detail-body ul { margin: 0 0 1.25rem; padding-left: 1.5rem; }
.service-detail-body li { margin-bottom: 0.5rem; }
.service-detail-block { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--gray-light); margin-bottom: var(--white-space, 4rem); }
.service-detail-block-heading { font-family: 'Outfit', sans-serif; font-size: 1.25rem; font-weight: 800; margin-bottom: 0.75rem; color: var(--navy); text-transform: uppercase; letter-spacing: 0.04em; }

/* What's Included: card grid with icon circles */
.service-detail-whats-included .service-detail-block-heading { margin-bottom: 1.5rem; }
.service-detail-whats-included .service-detail-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; list-style: none; margin: 0; padding: 0; }
.service-detail-whats-included .service-detail-list li { display: flex; align-items: center; margin: 0; padding: 1.25rem; background: var(--white); border: 1px solid var(--gray-light); border-radius: 10px; box-shadow: 0 2px 8px rgba(0,0,0,0.04); transition: border-color 0.2s, box-shadow 0.2s; }
.service-detail-whats-included .service-detail-list li:hover { border-color: var(--gold); box-shadow: 0 4px 12px rgba(244,140,0,0.12); }
.service-detail-whats-included .service-detail-list li::before { display: none; }
@media (max-width: 600px) {
	.service-detail-whats-included .service-detail-list { grid-template-columns: 1fr; }
}

/* Ideal For: pill/badge tags */
.service-detail-ideal-for .service-detail-list { display: flex; flex-wrap: wrap; gap: 0.5rem; grid-template-columns: unset; }
.service-detail-ideal-for .service-detail-list li { background: var(--gold-pale); border-left: none; border-radius: 999px; padding: 0.5rem 1.25rem; font-weight: 600; color: var(--navy); display: inline-block; }
.service-detail-ideal-for .service-detail-list li::before { display: none; }

/* How It Works: vertical timeline with numbered circles */
.service-detail-how-it-works .service-detail-steps { list-style: none; margin: 0; padding: 0; counter-reset: step; }
.service-detail-how-it-works .service-detail-steps li { position: relative; padding-left: 4rem; padding-top: 0.5rem; padding-bottom: 1.25rem; margin-bottom: 0; border-left: none; background: transparent; border-radius: 0; }
.service-detail-how-it-works .service-detail-steps li::before { content: counter(step); counter-increment: step; position: absolute; left: 0; top: 0.25rem; width: 2rem; height: 2rem; line-height: 2rem; text-align: center; background: var(--gold); color: var(--white); font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 0.9rem; border-radius: 50%; }
.service-detail-how-it-works .service-detail-steps li:not(:last-child)::after { content: ''; position: absolute; left: 0.875rem; top: 2.5rem; bottom: -0.5rem; width: 2px; background: var(--gray-light); }
.service-detail-how-it-works .service-detail-steps li { font-weight: 500; color: var(--text); }

/* Pricing Factors: compact list with subtle dividers */
.service-detail-pricing-factors .service-detail-list { grid-template-columns: 1fr; gap: 0; }
.service-detail-pricing-factors .service-detail-list li { background: transparent; border-left: none; border-radius: 0; border-bottom: 1px dashed var(--gray-light); padding: 0.65rem 0; font-size: 0.95rem; }
.service-detail-pricing-factors .service-detail-list li:last-child { border-bottom: none; }
.service-detail-pricing-factors .service-detail-list li::before { display: block; content: ''; position: absolute; left: 0; top: 0.75em; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
.service-detail-pricing-factors .service-detail-list li { position: relative; padding-left: 1.25rem; }

/* Related Services: horizontal link row with arrows */
.service-detail-related .service-detail-block-heading { margin-bottom: 1rem; }
.service-detail-related-list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; }
.service-detail-related-list li { margin: 0; }
.service-detail-related-list a { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 0; font-weight: 600; color: var(--gold); border-bottom: 2px solid transparent; transition: color 0.2s, border-color 0.2s; }
.service-detail-related-list a:hover { color: var(--gold-dark); border-bottom-color: var(--gold); }
.service-detail-related-list a::after { content: '\2192'; font-size: 0.85em; opacity: 0.8; }

/* State links: "[Service] Available in These States" — chip grid */
.service-detail-state-links { margin-top: 2.5rem; padding: 2rem; background: var(--navy); border-radius: 12px; color: var(--white); }
.service-detail-state-links .service-detail-state-heading { margin-bottom: 0.5rem; color: var(--white); font-size: 1.1rem; }
.service-detail-state-heading { font-family: 'Outfit', sans-serif; font-size: 1.25rem; font-weight: 800; margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.04em; }
.service-detail-state-links .service-detail-state-intro { font-size: 0.9rem; color: var(--white); margin-bottom: 1.25rem; }
.service-detail-state-grid { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
.service-detail-state-more-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.6); display: block; margin: 1rem 0 0.5rem 0; width: 100%; }
.service-detail-state-list--more li:first-child { width: 100%; flex-basis: 100%; }
.service-detail-state-list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.service-detail-state-list li { margin: 0; }
.service-detail-state-list a { display: inline-block; padding: 0.5rem 1rem; background: rgba(255,255,255,0.12); color: var(--white); font-weight: 600; font-size: 0.9rem; border-radius: 999px; border: 1px solid rgba(255,255,255,0.2); transition: background 0.2s, border-color 0.2s, color 0.2s; }
.service-detail-state-list a:hover { background: var(--gold); border-color: var(--gold); color: var(--white); text-decoration: none; }
.service-detail-state-all { margin: 1rem 0 0; }
.service-detail-state-all a { font-weight: 600; color: var(--gold); }
.service-detail-state-all a:hover { color: var(--white); text-decoration: underline; }

/* FAQ: distinct section with tinted background */
.service-detail-faq { background: var(--off-white); margin-left: -2rem; margin-right: -2rem; padding: 2rem 2rem; border-radius: var(--radius); border-top: none; }
.service-detail-faq .service-detail-block-heading { margin-bottom: 1.25rem; }
.service-detail-faq-list { margin: 0; padding: 0; }
.service-detail-faq-item { margin-bottom: 0.5rem; border: 1px solid var(--gray-light); border-radius: var(--radius); overflow: hidden; background: var(--white); transition: border-color 0.2s; }
.service-detail-faq-item[open] { border-color: var(--gold); }
.service-detail-faq-summary { display: block; padding: 0.75rem 1rem; font-size: 0.9rem; font-weight: 700; color: var(--navy); cursor: pointer; list-style: none; transition: color var(--transition-speed, 0.2s ease); background: var(--off-white); position: relative; padding-right: 2.5rem; }
.service-detail-faq-summary::-webkit-details-marker { display: none; }
.service-detail-faq-summary::marker { content: none; }
.service-detail-faq-summary:hover { background: var(--off-white); filter: brightness(0.97); }
.service-detail-faq-summary::after { content: '+'; position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); font-size: 1.1rem; font-weight: 700; color: var(--navy); transition: transform var(--transition-speed, 0.2s ease); }
.service-detail-faq-item[open] .service-detail-faq-summary::after { content: '\2212'; }
.service-detail-faq-item[open] .service-detail-faq-summary { color: var(--gold); }
.service-detail-faq-summary:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.service-detail-faq-a { margin: 0; padding: 0.75rem 1rem 1rem; font-size: 0.9rem; color: var(--text); line-height: 1.6; border-top: 1px solid var(--gray-light); padding-left: 1.25rem; border-left: 4px solid var(--gold); margin-left: 0; }
.service-detail-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin: 2rem 0 0; }
.service-detail-cta .btn-outline { border-color: var(--navy); color: var(--navy); }
.service-detail-cta .btn-outline:hover { background: var(--navy); color: var(--white); }
@media (max-width: 768px) {
	.service-detail-page { padding-bottom: 4rem; }
}

@media (max-width: 960px) {
	.services-hero-deco .deco-blob-wrap { width: min(240px, 46vw); top: 8%; right: -6%; }
	.services-hero-deco .deco-boxes-wrap { width: min(100px, 22vw); bottom: 12%; left: 3%; }
	.services-overview-deco .deco-blob-wrap { width: min(240px, 44vw); top: 5%; right: -6%; }
	.services-overview-deco .deco-boxes-wrap { width: min(100px, 22vw); bottom: 10%; left: 2%; }
}
@media (max-width: 520px) {
	.services-hero-deco .deco-blob-wrap { width: min(200px, 52vw); top: 5%; right: -8%; }
	.services-hero-deco .deco-boxes-wrap { width: min(85px, 24vw); bottom: 10%; left: 0; }
	.service-detail-cta { flex-direction: column; }
}

/* Service detail: testimonials (trust carousel) */
.service-detail-testimonials { padding: var(--white-space, 4rem) 0; background: var(--off-white); }
.service-detail-testimonials-title { font-family: 'Outfit', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--navy); text-align: center; margin-bottom: 2rem; }
.service-detail-testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-detail-testimonial-card { margin: 0; padding: 1.5rem; background: var(--white); border: 1px solid var(--gray-light); border-radius: var(--radius); }
.service-detail-testimonial-quote { font-size: 0.95rem; color: var(--navy); line-height: 1.6; margin: 0 0 0.75rem; font-style: italic; }
.service-detail-testimonial-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 0.5rem; }
.service-detail-testimonial-name { font-size: 0.85rem; font-weight: 600; color: var(--navy); font-style: normal; display: block; }
@media (max-width: 768px) {
	.service-detail-testimonials-grid { display: flex; flex-wrap: nowrap; overflow-x: auto; gap: 1rem; padding-bottom: 0.5rem; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
	.service-detail-testimonial-card { min-width: 280px; scroll-snap-align: start; flex-shrink: 0; }
}

/* Fixed CTA bar: sticky at bottom, visible only on phone */
.cta-quote-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; background: var(--navy); color: var(--white); padding: 0.85rem 1rem; box-shadow: 0 -4px 20px rgba(0,0,0,0.2); transform: translateY(0); transition: transform 0.3s ease; display: none; }
.cta-quote-bar.is-dismissed { transform: translateY(100%); pointer-events: none; }
.cta-quote-bar-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem; max-width: 1200px; margin: 0 auto; padding-right: 44px; }
.cta-quote-bar-text { font-size: 0.9rem; font-weight: 600; margin: 0; color: rgba(255,255,255,0.95); }
.cta-quote-bar-btn { flex-shrink: 0; padding: 10px 20px; font-size: 0.85rem; }
.cta-quote-bar-dismiss { position: absolute; top: 50%; right: 0.75rem; transform: translateY(-50%); width: 36px; height: 36px; padding: 0; background: transparent; border: 0; color: rgba(255,255,255,0.7); cursor: pointer; border-radius: var(--radius); transition: color 0.2s, background 0.2s; }
.cta-quote-bar-dismiss:hover { color: var(--white); background: rgba(255,255,255,0.1); }
@media (max-width: 768px) {
	.cta-quote-bar { display: block; }
	body.cta-quote-bar-visible { padding-bottom: 64px; }
}
@media (max-width: 520px) {
	.cta-quote-bar-inner { flex-direction: column; padding-right: 0; padding-bottom: 36px; }
	.cta-quote-bar-dismiss { top: auto; bottom: 0.5rem; right: 50%; transform: translateX(50%); }
	body.cta-quote-bar-visible { padding-bottom: 100px; }
}
