/*
Theme Name: TrueNorth Sheds 2025
Theme URI: https://truenorthsheds.ca
Author: TrueNorth Business Suite
Author URI: https://truenorthsheds.ca
Description: Conversion-optimized theme for shed builders with integrated 3D configurator, CRM, and lead generation.
Version: 1.6.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: truenorth-2025

TrueNorth Sheds 2025 is a custom WordPress theme designed for maximum conversions.
Features multiple CTAs, landing page templates, exit-intent popups, and seamless
integration with the TrueNorth Business Suite plugin.
*/

/* ==========================================================================
   Base Styles & Variables
   ========================================================================== */

:root {
	--tn-red: #D80621;
	--tn-dark-red: #B00518;
	--tn-black: #1a1a1a;
	--tn-gray: #666;
	--tn-light-gray: #f4f4f4;
	--tn-white: #ffffff;
	--tn-gold: #ffd700;
	--tn-green: #28a745;

	--font-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	--font-heading: "Oswald", "Helvetica Neue", Helvetica, Arial, sans-serif;

	--max-width: 1200px;
	--spacing-xs: 0.5rem;
	--spacing-sm: 1rem;
	--spacing-md: 2rem;
	--spacing-lg: 3rem;
	--spacing-xl: 4rem;

	--border-radius: 8px;
	--transition: all 0.3s ease;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: var(--font-primary);
	font-size: 16px;
	line-height: 1.6;
	color: var(--tn-black);
	background: var(--tn-white);
}

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

a {
	color: var(--tn-red);
	text-decoration: none;
	transition: var(--transition);
}

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

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: var(--spacing-sm);
	color: var(--tn-black);
}

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

p {
	margin-bottom: var(--spacing-sm);
}

/* ==========================================================================
   Layout
   ========================================================================== */

.container {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 var(--spacing-sm);
}

.section {
	padding: var(--spacing-xl) 0;
}

.section-gray {
	background: var(--tn-light-gray);
}

/* ==========================================================================
   Buttons & CTAs
   ========================================================================== */

.btn {
	display: inline-block;
	padding: 1rem 2rem;
	font-size: 1.125rem;
	font-weight: 600;
	text-align: center;
	border-radius: var(--border-radius);
	cursor: pointer;
	transition: var(--transition);
	border: none;
	text-decoration: none;
	line-height: 1;
}

.btn-primary {
	background: var(--tn-red);
	color: var(--tn-white);
	box-shadow: 0 4px 12px rgba(216, 6, 33, 0.3);
}

.btn-primary:hover {
	background: var(--tn-dark-red);
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(216, 6, 33, 0.4);
	color: var(--tn-white);
}

.btn-secondary {
	background: var(--tn-white);
	color: var(--tn-red);
	border: 2px solid var(--tn-red);
}

.btn-secondary:hover {
	background: var(--tn-red);
	color: var(--tn-white);
}

.btn-large {
	padding: 1.25rem 2.5rem;
	font-size: 1.25rem;
}

.btn-block {
	display: block;
	width: 100%;
}

/* Sticky CTA Button */
.sticky-cta-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	display: flex;
	box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.sticky-cta-btn {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 1rem;
	font-size: 1rem;
	font-weight: 700;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: background 0.2s;
}

.sticky-cta-primary {
	background: #D80621;
	color: #fff;
}

.sticky-cta-primary:hover {
	background: #b00518;
	color: #fff;
}

.sticky-cta-phone {
	background: #111827;
	color: #fff;
}

.sticky-cta-phone:hover {
	background: #1f2937;
	color: #fff;
}

@media (min-width: 769px) {
	.sticky-cta-bar {
		bottom: 20px;
		left: auto;
		right: 20px;
		width: auto;
		border-radius: 10px;
		overflow: hidden;
	}

	.sticky-cta-btn {
		padding: 0.875rem 1.5rem;
		font-size: 0.9rem;
	}
}

/* ─── Side Hook CTA: Build & Price ─────────────────────── */
.qb-side-cta {
	position: fixed;
	right: 0;
	top: 50%;
	transform: translateY(-50%) translateX(100%);
	z-index: 9998;
	transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.3s;
	pointer-events: none;
}

.qb-side-cta.visible {
	transform: translateY(-50%) translateX(0);
	pointer-events: auto;
}

.qb-side-cta-link {
	display: flex;
	align-items: center;
	gap: 0;
	text-decoration: none !important;
	color: #fff !important;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 1px;
	line-height: 1.2;
	background: var(--tn-red);
	border-radius: 8px 0 0 8px;
	box-shadow: -4px 4px 20px rgba(216, 6, 33, 0.35);
	overflow: hidden;
	transition: background 0.2s, box-shadow 0.2s;
}

.qb-side-cta-link:hover {
	background: var(--tn-dark-red);
	box-shadow: -6px 6px 30px rgba(216, 6, 33, 0.5);
	color: #fff !important;
}

.qb-side-cta-tab {
	writing-mode: vertical-rl;
	text-orientation: mixed;
	padding: 18px 12px;
	white-space: nowrap;
	border-right: 1px solid rgba(255,255,255,0.15);
}

.qb-side-cta-panel {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 16px 14px;
	gap: 6px;
	text-align: center;
	max-width: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-width 0.35s ease, opacity 0.25s ease, padding 0.35s ease;
}

.qb-side-cta-link:hover .qb-side-cta-panel {
	max-width: 200px;
	opacity: 1;
	padding: 16px 18px;
}

.qb-side-cta-icon {
	font-size: 28px;
	line-height: 1;
}

.qb-side-cta-text {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.5px;
	white-space: nowrap;
}

.qb-side-cta-sub {
	font-size: 10px;
	font-weight: 400;
	opacity: 0.85;
	letter-spacing: 0;
	text-transform: none;
	white-space: nowrap;
}

/* Hide on quote builder page */
.page-template-page-quote-builder .qb-side-cta {
	display: none !important;
}

/* Mobile: bottom bar instead of side tab */
@media (max-width: 768px) {
	.qb-side-cta {
		top: auto;
		bottom: 0;
		right: 0;
		left: 0;
		transform: translateY(100%);
	}

	.qb-side-cta.visible {
		transform: translateY(0);
	}

	.qb-side-cta-link {
		border-radius: 0;
		flex-direction: row;
		justify-content: center;
		width: 100%;
		box-shadow: 0 -4px 20px rgba(216, 6, 33, 0.3);
	}

	.qb-side-cta-tab {
		writing-mode: horizontal-tb;
		padding: 14px 8px 14px 16px;
		border-right: none;
	}

	.qb-side-cta-panel {
		max-width: none;
		opacity: 1;
		flex-direction: row;
		padding: 14px 16px 14px 4px;
		gap: 8px;
	}

	.qb-side-cta-icon {
		font-size: 22px;
	}

	.qb-side-cta-sub {
		display: none;
	}

	/* Push sticky CTA up so it doesn't overlap */
	.qb-side-cta.visible ~ .sticky-cta {
		bottom: 65px;
	}
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.site-header {
	background: var(--tn-white);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem var(--spacing-sm);
	max-width: var(--max-width);
	margin: 0 auto;
}

.site-logo img {
	height: 50px;
	width: auto;
}

.main-navigation ul {
	list-style: none;
	display: flex;
	gap: var(--spacing-md);
	align-items: center;
}

.main-navigation a {
	color: var(--tn-black);
	font-weight: 500;
	padding: 0.5rem 1rem;
}

.main-navigation a:hover {
	color: var(--tn-red);
}

.header-cta {
	margin-left: var(--spacing-sm);
}

/* Mobile Menu Toggle */
.menu-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
	color: var(--tn-black);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
	background: linear-gradient(135deg, var(--tn-red) 0%, var(--tn-dark-red) 100%);
	color: var(--tn-white);
	padding: var(--spacing-xl) 0;
	text-align: center;
}

.hero h1 {
	color: var(--tn-white);
	font-size: 3rem;
	margin-bottom: var(--spacing-sm);
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero p {
	font-size: 1.25rem;
	margin-bottom: var(--spacing-md);
	opacity: 0.95;
}

.hero-cta {
	display: flex;
	gap: var(--spacing-sm);
	justify-content: center;
	flex-wrap: wrap;
}

/* ==========================================================================
   Trust Signals
   ========================================================================== */

.trust-signals {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	text-align: center;
	margin: 0;
}

.trust-item {
	padding: 2rem 1.5rem;
	transition: background 0.25s;
	position: relative;
}

.trust-item + .trust-item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 25%;
	height: 50%;
	width: 1px;
	background: #f0f0f0;
}

.trust-item:hover {
	background: #fafafa;
}

/* Dark trust bar variant */
.trust-signals-dark .trust-item + .trust-item::before {
	background: rgba(255,255,255,0.08);
}

.trust-item-dark {
	color: #fff;
}

.trust-item-dark:hover {
	background: rgba(255,255,255,0.04);
}

.trust-item-dark h3 {
	color: #fff;
}

.trust-item-dark p {
	color: rgba(255,255,255,0.55);
}

.trust-item-dark .trust-icon-wrap {
	background: rgba(216,6,33,0.18);
}

.trust-item-dark:hover .trust-icon-wrap {
	background: var(--tn-red);
}

/* Lucide icon wrapper inside trust bar */
.trust-icon-wrap {
	width: 52px;
	height: 52px;
	background: #fff5f6;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	transition: background 0.25s, transform 0.25s;
}

.trust-icon-wrap svg {
	width: 26px;
	height: 26px;
	stroke: var(--tn-red);
	stroke-width: 1.5;
}

.trust-item:hover .trust-icon-wrap {
	background: var(--tn-red);
	transform: translateY(-2px);
}

.trust-item:hover .trust-icon-wrap svg {
	stroke: #fff;
}

.trust-item h3 {
	font-family: var(--font-heading);
	font-size: 1.625rem;
	font-weight: 700;
	margin-bottom: 0.25rem;
	letter-spacing: -0.5px;
}

.trust-item p {
	color: var(--tn-gray);
	font-size: 0.875rem;
	font-weight: 500;
}

/* ==========================================================================
   Lead Forms
   ========================================================================== */

.lead-form {
	background: var(--tn-white);
	padding: 2rem 2.5rem;
	border-radius: var(--border-radius);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	text-align: left;
	max-width: 540px;
	margin-left: auto;
	margin-right: auto;
}

.lead-form h3 {
	margin-bottom: 0.25rem;
	color: var(--tn-black);
	text-align: center;
}

.lead-form > p {
	text-align: center;
	color: var(--tn-gray);
	margin-bottom: 1.5rem;
	font-size: 0.95rem;
}

.form-group {
	margin-bottom: 1rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.35rem;
	font-weight: 600;
	font-size: 0.875rem;
	color: #333;
	letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea,
.form-group select {
	width: 100%;
	padding: 0.8rem 1rem;
	border: 1.5px solid #d0d0d0;
	border-radius: 6px;
	font-family: var(--font-primary);
	font-size: 1rem;
	background: #fafafa;
	transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
	outline: none;
	border-color: var(--tn-red);
	box-shadow: 0 0 0 3px rgba(216, 6, 33, 0.1);
	background: #fff;
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

.form-group button.btn {
	margin-top: 0.5rem;
	padding: 0.9rem 1.5rem;
	font-size: 1.05rem;
	letter-spacing: 0.02em;
}

.form-disclaimer {
	font-size: 0.8rem;
	color: #999;
	margin-top: 0.75rem;
	text-align: center;
	line-height: 1.5;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
	background: var(--tn-black);
	color: var(--tn-white);
	padding: var(--spacing-lg) 0 var(--spacing-sm);
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: var(--spacing-md);
	margin-bottom: var(--spacing-md);
}

.footer-section h3 {
	color: var(--tn-white);
	margin-bottom: var(--spacing-sm);
}

.footer-section ul {
	list-style: none;
}

.footer-section li {
	margin-bottom: 0.5rem;
}

.footer-section a {
	color: rgba(255, 255, 255, 0.8);
}

.footer-section a:hover {
	color: var(--tn-white);
}

.footer-bottom {
	text-align: center;
	padding-top: var(--spacing-sm);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   Exit Intent Popup
   ========================================================================== */

.exit-popup {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	z-index: 10000;
	align-items: center;
	justify-content: center;
}

.exit-popup.active {
	display: flex;
}

.exit-popup-content {
	background: var(--tn-white);
	padding: var(--spacing-lg);
	border-radius: var(--border-radius);
	max-width: 500px;
	position: relative;
	animation: slideIn 0.3s ease;
}

@keyframes slideIn {
	from {
		transform: translateY(-50px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.exit-popup-close {
	position: absolute;
	top: 10px;
	right: 10px;
	background: none;
	border: none;
	font-size: 2rem;
	cursor: pointer;
	color: var(--tn-gray);
	line-height: 1;
}

.exit-popup h2 {
	color: var(--tn-red);
	margin-bottom: var(--spacing-sm);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

/* Shed detail cards — responsive */
.shed-detail-card {
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.shed-detail-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 32px rgba(0,0,0,0.12) !important;
}

@media (max-width: 768px) {
	.shed-detail-card {
		grid-template-columns: 1fr !important;
	}
	.shed-detail-card > div:first-child {
		min-height: 240px !important;
	}
	.shed-detail-card > div[style*="padding: 2.5rem 3rem"] {
		padding: 1.5rem !important;
	}

	:root {
		--spacing-xl: 2rem;
		--spacing-lg: 1.5rem;
	}

	h1 { font-size: 2rem; }
	h2 { font-size: 1.75rem; }
	h3 { font-size: 1.5rem; }

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

	.hero p {
		font-size: 1rem;
	}

	.main-navigation {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--tn-white);
		box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	}

	.main-navigation.active {
		display: block;
	}

	.main-navigation ul {
		flex-direction: column;
		gap: 0;
	}

	.main-navigation li {
		border-bottom: 1px solid var(--tn-light-gray);
	}

	.main-navigation a {
		display: block;
		padding: var(--spacing-sm);
	}

	.menu-toggle {
		display: block;
	}

	.sticky-cta {
		bottom: 10px;
		right: 10px;
	}

	.btn {
		padding: 0.875rem 1.5rem;
		font-size: 1rem;
	}

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

	.trust-signals {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

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

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }

.hidden { display: none; }

/* ==========================================================================
   Page Components — TrueNorth 2025 Front-End Build
   ========================================================================== */

/* --------------------------------------------------------------------------
   Shed Cards
   -------------------------------------------------------------------------- */

.shed-card {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
	transition: transform 0.28s ease, box-shadow 0.28s ease;
	display: flex;
	flex-direction: column;
	border: 1px solid #f0f0f0;
}

.shed-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
	border-color: transparent;
}

/* Image area — real photo from CPT featured image */
.shed-card-img {
	height: 220px;
	overflow: hidden;
	position: relative;
}

.shed-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
	display: block;
}

.shed-card:hover .shed-card-img img {
	transform: scale(1.04);
}

/* Shared image area for gradient placeholder fallback */
.shed-card-image {
	height: 220px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.shed-card-body {
	padding: 1.5rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.shed-card-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 0.8125rem;
	color: #888;
	font-weight: 600;
	letter-spacing: 0.5px;
	margin-bottom: 0.5rem;
}

.shed-card-price {
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--tn-red);
}

/* --------------------------------------------------------------------------
   Steps Grid — "How It Works"
   -------------------------------------------------------------------------- */

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

.step-item {
	text-align: center;
	padding: 2rem 1.5rem;
}

.step-number {
	width: 64px;
	height: 64px;
	background: var(--tn-black);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-heading);
	font-size: 1.5rem;
	font-weight: 700;
	margin: 0 auto 1.25rem;
	box-shadow: 0 4px 16px rgba(0,0,0,0.15);
	transition: background 0.25s, transform 0.25s;
}

/* When the step number wraps a Lucide icon instead of a numeral */
.step-icon-wrap {
	background: linear-gradient(135deg, var(--tn-red) 0%, #880014 100%);
	box-shadow: 0 4px 16px rgba(216,6,33,0.25);
}

.step-icon-wrap svg {
	stroke: #fff;
}

.step-item:hover .step-number {
	transform: translateY(-3px);
	background: var(--tn-red);
}

.step-item:hover .step-icon-wrap {
	background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
	box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.step-item h3 {
	margin-bottom: 0.75rem;
}

/* Dark steps variant */
.steps-grid-dark .step-item {
	background: rgba(255,255,255,0.03);
	border: 1px solid rgba(255,255,255,0.06);
	border-radius: 12px;
}

.steps-grid-dark .step-item:hover {
	background: rgba(255,255,255,0.06);
	border-color: rgba(216,6,33,0.3);
}

.steps-grid-dark .step-item:hover .step-icon-wrap {
	background: linear-gradient(135deg, var(--tn-red) 0%, #880014 100%);
	box-shadow: 0 6px 20px rgba(216,6,33,0.35);
}

@media (max-width: 700px) {
	.steps-grid {
		grid-template-columns: 1fr;
	}
}

/* --------------------------------------------------------------------------
   Gallery Grid & Items
   -------------------------------------------------------------------------- */

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1rem;
}

.gallery-item {
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	cursor: pointer;
	transition: opacity 0.3s ease;
}

.gallery-img {
	height: 220px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.gallery-overlay {
	position: absolute;
	inset: 0;
	background: rgba(26,26,26,0.75);
	display: flex;
	align-items: flex-end;
	opacity: 0;
	transition: opacity 0.25s ease;
}

.gallery-item:hover .gallery-overlay {
	opacity: 1;
}

.gallery-info {
	padding: 1.25rem;
	color: #fff;
	width: 100%;
}

.gallery-info h4 {
	color: #fff;
	margin: 0.25rem 0;
	font-size: 1rem;
}

.gallery-info p {
	margin: 0;
	font-size: 0.875rem;
	opacity: 0.85;
}

.gallery-type {
	display: inline-block;
	background: #D80621;
	color: #fff;
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 0.2em 0.6em;
	border-radius: 3px;
}

/* --------------------------------------------------------------------------
   Filter Bar
   -------------------------------------------------------------------------- */

.filter-bar {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
	align-items: center;
}

.filter-btn {
	padding: 0.5rem 1.25rem;
	border: 2px solid #E0E0E0;
	background: #fff;
	color: #444;
	border-radius: 30px;
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
	border-color: #D80621;
	background: #D80621;
	color: #fff;
}

/* --------------------------------------------------------------------------
   City Grid — Service Area Tags
   -------------------------------------------------------------------------- */

.city-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.city-tag {
	display: inline-block;
	background: #f4f4f4;
	color: #444;
	border: 1px solid #ddd;
	border-radius: 4px;
	padding: 0.375rem 0.875rem;
	font-size: 0.875rem;
	font-weight: 600;
}

/* --------------------------------------------------------------------------
   Counter Items — Animated Stats
   -------------------------------------------------------------------------- */

.counter-item {
	padding: 1.5rem;
}

.counter-number {
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	font-weight: 800;
	color: #D80621;
	line-height: 1;
	margin-bottom: 0.5rem;
}

.counter-label {
	font-size: 1rem;
	color: #666;
	font-weight: 600;
}

/* --------------------------------------------------------------------------
   Multi-Step Quote Form
   -------------------------------------------------------------------------- */

.multi-step-form {
	background: #fff;
	border-radius: 10px;
	padding: 2.5rem;
	box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.form-progress {
	display: flex;
	align-items: center;
	margin-bottom: 2.5rem;
}

.step-indicator {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.4rem;
	flex: 0 0 auto;
}

.step-indicator .step-num {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #e0e0e0;
	color: #888;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1rem;
	transition: background 0.3s, color 0.3s;
}

.step-indicator span {
	font-size: 0.75rem;
	color: #999;
	font-weight: 600;
	white-space: nowrap;
}

.step-indicator.active .step-num {
	background: #D80621;
	color: #fff;
}

.step-indicator.active span {
	color: #D80621;
}

.step-indicator.complete .step-num {
	background: #28a745;
	color: #fff;
}

.step-indicator.complete span {
	color: #28a745;
}

.progress-line {
	flex: 1;
	height: 2px;
	background: #e0e0e0;
	margin: 0 0.5rem;
	margin-bottom: 1.2rem;
}

.form-step {
	display: none;
}

.form-step.active {
	display: block;
}

/* --------------------------------------------------------------------------
   Contact Split Layout
   -------------------------------------------------------------------------- */

.contact-split {
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 2.5rem;
	align-items: start;
}

.contact-sidebar {
	position: sticky;
	top: 80px;
}

@media (max-width: 900px) {
	.contact-split {
		grid-template-columns: 1fr;
	}

	.contact-sidebar {
		position: static;
	}
}

/* --------------------------------------------------------------------------
   FAQ Items
   -------------------------------------------------------------------------- */

.faq-item {
	border-bottom: 1px solid #ddd5c8;
	padding: 1.5rem 0;
}

.faq-item:last-child {
	border-bottom: none;
}

.faq-question {
	font-size: 1.1rem;
	font-weight: 700;
	color: #1a1a1a;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	user-select: none;
}

.faq-question::after {
	content: '+';
	font-size: 1.5rem;
	color: #D80621;
	flex-shrink: 0;
	transition: transform 0.2s;
}

.faq-item.open .faq-question::after {
	transform: rotate(45deg);
}

.faq-answer {
	display: none;
	padding-top: 0.75rem;
	color: #555;
	line-height: 1.8;
}

.faq-item.open .faq-answer {
	display: block;
}
