:root {
	--font-display: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	--font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	
	/* Color Palette: Automotive Navy, Pure White, Vibrant Safety Orange & Speed Blue */
	--navy-950: #070D1D;
	--navy-900: #0D1B36;
	--navy-800: #15274B;
	--navy-700: #1E3A8A;
	--navy-600: #2563EB;
	
	--orange-600: #EA580C;
	--orange-500: #F97316;
	--orange-400: #FB923C;
	--orange-50: #FFF7ED;

	--green-600: #16A34A;
	--green-500: #22C55E;
	--green-50: #F0FDF4;

	--gray-50: #F8FAFC;
	--gray-100: #F1F5F9;
	--gray-200: #E2E8F0;
	--gray-300: #CBD5E1;
	--gray-400: #94A3B8;
	--gray-500: #64748B;
	--gray-600: #475569;
	--gray-700: #334155;
	--gray-800: #1E293B;
	--gray-900: #0F172A;

	--bg: #FFFFFF;
	--fg: #0F172A;
	--muted: #64748B;
	--accent: #F97316;
	--accent-hover: #EA580C;
	--primary: #0D1B36;
	--primary-light: #1E3A8A;
	--border: #E2E8F0;
	--danger: #DC2626;
	--radius: 12px;
	--radius-sm: 6px;
	--radius-lg: 20px;
	--space: 1rem;
	--shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
	--shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
	--shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
	--shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.15), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

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

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--fg);
	font-family: var(--font-body);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
	padding-bottom: 72px; /* For mobile sticky bar */
}

@media (min-width: 768px) {
	body {
		padding-bottom: 0;
	}
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	color: var(--navy-950);
	font-weight: 700;
	line-height: 1.2;
}

a {
	color: inherit;
	text-decoration: none;
}

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

/* ============================================================
   CONTAINER & LAYOUT
   ============================================================ */
.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.25rem;
}

.container-wide {
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 1.25rem;
}

/* ============================================================
   HEADER & TOP ANNOUNCEMENT BAR
   ============================================================ */
.top-bar {
	background: var(--navy-950);
	color: #E2E8F0;
	font-size: 0.85rem;
	padding: 0.45rem 0;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.top-bar-item {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
}

.top-bar-highlight {
	color: var(--orange-400);
	font-weight: 600;
}

.status-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.2rem 0.6rem;
	border-radius: 9999px;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.02em;
}

.status-open {
	background: rgba(34, 197, 94, 0.2);
	color: #4ADE80;
	border: 1px solid rgba(74, 222, 128, 0.4);
}

.status-closed {
	background: rgba(239, 68, 68, 0.2);
	color: #F87171;
	border: 1px solid rgba(248, 113, 113, 0.4);
}

.pulse-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: currentColor;
	box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
	}
	70% {
		transform: scale(1);
		box-shadow: 0 0 0 6px rgba(74, 222, 128, 0);
	}
	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
	}
}

/* MAIN NAVBAR */
.site-header {
	background: #FFFFFF;
	border-bottom: 1px solid var(--gray-200);
	position: sticky;
	top: 0;
	z-index: 100;
	box-shadow: var(--shadow-sm);
}

.navbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.85rem 0;
	gap: 1rem;
}

.brand-logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
}

.logo-badge {
	width: 44px;
	height: 44px;
	background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--orange-500);
	font-size: 1.4rem;
	border: 2px solid var(--orange-500);
	box-shadow: 0 4px 10px rgba(249, 115, 22, 0.25);
	flex-shrink: 0;
}

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

.brand-title {
	font-family: var(--font-display);
	font-size: 1.1rem;
	font-weight: 800;
	line-height: 1.1;
	color: var(--navy-950);
	letter-spacing: -0.01em;
}

.brand-subtitle {
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--orange-600);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.nav-links {
	display: none;
	align-items: center;
	gap: 1.25rem;
	list-style: none;
}

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

.nav-link {
	font-size: 0.925rem;
	font-weight: 600;
	color: var(--gray-700);
	transition: color 0.15s ease;
	padding: 0.35rem 0.2rem;
	position: relative;
}

.nav-link:hover,
.nav-link.active {
	color: var(--orange-600);
}

.nav-link.active::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--orange-500);
	border-radius: 2px;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 0.6rem;
}

.phone-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--orange-500);
	color: #FFFFFF !important;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.95rem;
	padding: 0.55rem 1.1rem;
	border-radius: var(--radius);
	box-shadow: 0 4px 12px rgba(249, 115, 22, 0.35);
	transition: all 0.2s ease;
	border: 1px solid var(--orange-600);
}

.phone-cta-btn:hover {
	background: var(--orange-600);
	transform: translateY(-1px);
	box-shadow: 0 6px 16px rgba(249, 115, 22, 0.45);
}

.mobile-menu-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: var(--gray-100);
	border: 1px solid var(--gray-200);
	border-radius: 8px;
	font-size: 1.25rem;
	cursor: pointer;
	color: var(--navy-900);
}

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

/* Mobile Dropdown Nav */
.mobile-nav-panel {
	display: block;
	background: #FFFFFF;
	border-top: 1px solid var(--gray-200);
	padding: 1rem 1.25rem;
	box-shadow: var(--shadow-lg);
}

.mobile-nav-panel ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.mobile-nav-panel a {
	display: block;
	padding: 0.5rem 0;
	font-size: 1rem;
	font-weight: 600;
	color: var(--navy-900);
	border-bottom: 1px solid var(--gray-100);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
	background: radial-gradient(circle at 80% 20%, #1E3A8A 0%, #0D1B36 45%, #070D1D 100%);
	color: #FFFFFF;
	padding: 3rem 0 3.5rem;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml;utf8,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><g fill="%23ffffff" fill-opacity="0.03" fill-rule="evenodd"><path d="M0 40L40 0H20L0 20M40 40V20L20 40"/></g></svg>');
	opacity: 0.7;
	pointer-events: none;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	align-items: center;
	position: relative;
	z-index: 1;
}

@media (min-width: 960px) {
	.hero-grid {
		grid-template-columns: 1.15fr 0.85fr;
	}
}

.hero-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(249, 115, 22, 0.15);
	border: 1px solid rgba(249, 115, 22, 0.4);
	color: var(--orange-400);
	padding: 0.35rem 0.85rem;
	border-radius: 9999px;
	font-size: 0.825rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	margin-bottom: 1rem;
}

.hero-title {
	font-size: clamp(2rem, 5vw, 3.25rem);
	color: #FFFFFF;
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.02em;
	margin-bottom: 1.25rem;
}

.hero-highlight {
	color: var(--orange-400);
	background: linear-gradient(135deg, #FB923C 0%, #F97316 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero-subhead {
	font-size: clamp(1rem, 2vw, 1.15rem);
	color: #CBD5E1;
	line-height: 1.6;
	margin-bottom: 1.75rem;
	max-width: 600px;
}

.hero-ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-bottom: 2rem;
}

.btn-primary-lg {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	background: var(--orange-500);
	color: #FFFFFF;
	font-family: var(--font-display);
	font-size: 1.05rem;
	font-weight: 700;
	padding: 0.85rem 1.6rem;
	border-radius: var(--radius);
	border: none;
	cursor: pointer;
	box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
	transition: all 0.2s ease;
}

.btn-primary-lg:hover {
	background: var(--orange-600);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(249, 115, 22, 0.5);
}

.btn-secondary-lg {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	background: rgba(255, 255, 255, 0.1);
	color: #FFFFFF;
	font-family: var(--font-display);
	font-size: 1.05rem;
	font-weight: 600;
	padding: 0.85rem 1.4rem;
	border-radius: var(--radius);
	border: 1px solid rgba(255, 255, 255, 0.25);
	backdrop-filter: blur(8px);
	cursor: pointer;
	transition: all 0.2s ease;
}

.btn-secondary-lg:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.5);
}

.hero-trust-bar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	color: #E2E8F0;
	font-weight: 500;
}

.trust-icon {
	color: var(--orange-400);
	font-size: 1.15rem;
	flex-shrink: 0;
}

/* Hero Quick Card */
.hero-card {
	background: rgba(13, 27, 54, 0.85);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: var(--radius-lg);
	padding: 1.75rem;
	backdrop-filter: blur(12px);
	box-shadow: var(--shadow-xl);
	position: relative;
}

.hero-card-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1.25rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-card-title {
	font-size: 1.15rem;
	color: #FFFFFF;
	font-weight: 700;
}

.quick-finder-box {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

/* ============================================================
   STATS / TRUST STRIP
   ============================================================ */
.stats-strip {
	background: #F8FAFC;
	border-bottom: 1px solid var(--gray-200);
	padding: 1.5rem 0;
}

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

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

.stat-item {
	text-align: center;
	padding: 0.5rem;
}

.stat-number {
	font-family: var(--font-display);
	font-size: 1.85rem;
	font-weight: 800;
	color: var(--navy-900);
	line-height: 1;
	margin-bottom: 0.25rem;
}

.stat-label {
	font-size: 0.85rem;
	color: var(--gray-600);
	font-weight: 600;
}

/* ============================================================
   TIRE FINDER & ESTIMATOR TOOL SECTION
   ============================================================ */
.section {
	padding: 4rem 0;
}

.section-dark {
	background: var(--navy-950);
	color: #FFFFFF;
}

.section-dark h2, .section-dark h3 {
	color: #FFFFFF;
}

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

.section-header {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 2.5rem;
}

.section-badge {
	display: inline-block;
	background: rgba(249, 115, 22, 0.1);
	color: var(--orange-600);
	font-weight: 700;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	padding: 0.3rem 0.8rem;
	border-radius: 9999px;
	margin-bottom: 0.75rem;
}

.section-badge-dark {
	background: rgba(249, 115, 22, 0.2);
	color: var(--orange-400);
}

.section-title {
	font-size: clamp(1.75rem, 3.5vw, 2.4rem);
	letter-spacing: -0.02em;
	margin-bottom: 0.75rem;
}

.section-description {
	font-size: 1.05rem;
	color: var(--gray-600);
}

.section-dark .section-description {
	color: var(--gray-300);
}

/* Interactive Calculator Container */
.finder-card {
	background: #FFFFFF;
	border: 1px solid var(--gray-200);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	overflow: hidden;
}

.finder-tabs {
	display: flex;
	border-bottom: 1px solid var(--gray-200);
	background: var(--gray-50);
}

.finder-tab-btn {
	flex: 1;
	padding: 1rem;
	text-align: center;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.95rem;
	color: var(--gray-600);
	background: transparent;
	border: none;
	cursor: pointer;
	transition: all 0.15s ease;
	border-bottom: 3px solid transparent;
}

.finder-tab-btn.active {
	color: var(--navy-900);
	background: #FFFFFF;
	border-bottom-color: var(--orange-500);
}

.finder-body {
	padding: 1.75rem;
}

.finder-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

@media (min-width: 840px) {
	.finder-grid {
		grid-template-columns: 1.2fr 0.8fr;
	}
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	margin-bottom: 1rem;
}

.form-label {
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--navy-900);
}

.form-select, .form-input, .form-textarea {
	width: 100%;
	padding: 0.7rem 0.85rem;
	border: 1px solid var(--gray-300);
	border-radius: var(--radius-sm);
	font-family: inherit;
	font-size: 0.95rem;
	color: var(--navy-900);
	background: #FFFFFF;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-select:focus, .form-input:focus, .form-textarea:focus {
	outline: none;
	border-color: var(--orange-500);
	box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}

.tire-inputs-row {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 0.75rem;
}

.quote-result-card {
	background: linear-gradient(145deg, var(--navy-950) 0%, var(--navy-900) 100%);
	border-radius: var(--radius);
	padding: 1.5rem;
	color: #FFFFFF;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border: 1px solid rgba(255,255,255,0.1);
}

.quote-price-box {
	text-align: center;
	padding: 1.25rem 0;
	border-top: 1px dashed rgba(255,255,255,0.15);
	border-bottom: 1px dashed rgba(255,255,255,0.15);
	margin: 1rem 0;
}

.price-est-label {
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--gray-400);
	margin-bottom: 0.25rem;
}

.price-est-range {
	font-family: var(--font-display);
	font-size: 2.2rem;
	font-weight: 800;
	color: var(--orange-400);
	line-height: 1.1;
}

.price-est-note {
	font-size: 0.8rem;
	color: #CBD5E1;
	margin-top: 0.35rem;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

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

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

.service-card {
	background: #FFFFFF;
	border: 1px solid var(--gray-200);
	border-radius: var(--radius);
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	transition: all 0.2s ease;
	position: relative;
	box-shadow: var(--shadow-sm);
}

.service-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
	border-color: var(--orange-400);
}

.service-card-featured {
	border: 2px solid var(--orange-500);
	background: #FFFDFB;
}

.featured-pill {
	position: absolute;
	top: -12px;
	right: 1.25rem;
	background: var(--orange-500);
	color: #FFFFFF;
	font-size: 0.725rem;
	font-weight: 800;
	text-transform: uppercase;
	padding: 0.2rem 0.6rem;
	border-radius: 9999px;
	letter-spacing: 0.04em;
}

.service-icon-box {
	width: 50px;
	height: 50px;
	border-radius: 12px;
	background: var(--navy-50, #EEF2FF);
	color: var(--navy-700);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
	margin-bottom: 1.1rem;
}

.service-card-featured .service-icon-box {
	background: var(--orange-50);
	color: var(--orange-600);
}

.service-title {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.service-desc {
	font-size: 0.925rem;
	color: var(--gray-600);
	margin-bottom: 1.25rem;
	flex-grow: 1;
}

.service-features-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	margin-bottom: 1.25rem;
	font-size: 0.85rem;
	color: var(--gray-700);
}

.service-features-list li {
	display: flex;
	align-items: center;
	gap: 0.45rem;
}

.service-meta-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 0.85rem;
	border-top: 1px solid var(--gray-100);
	font-size: 0.85rem;
}

.turnaround-tag {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	color: var(--green-600);
	font-weight: 700;
}

/* ============================================================
   WHY CHOOSE US / 4-POINT INSPECTION
   ============================================================ */
.why-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	align-items: center;
}

@media (min-width: 960px) {
	.why-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.inspection-list {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.inspection-item {
	display: flex;
	gap: 1rem;
	background: #FFFFFF;
	border: 1px solid var(--gray-200);
	border-radius: var(--radius);
	padding: 1.1rem;
	transition: border-color 0.15s ease;
}

.inspection-item:hover {
	border-color: var(--orange-500);
}

.inspection-num {
	width: 36px;
	height: 36px;
	background: var(--navy-900);
	color: #FFFFFF;
	font-family: var(--font-display);
	font-weight: 800;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.comparison-box {
	background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-950) 100%);
	border-radius: var(--radius-lg);
	padding: 2rem;
	color: #FFFFFF;
	border: 1px solid rgba(255,255,255,0.15);
}

.comparison-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 1.25rem;
}

.comparison-table th, .comparison-table td {
	padding: 0.75rem 0.5rem;
	font-size: 0.875rem;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}

.comparison-table th {
	color: var(--gray-400);
	font-weight: 600;
	text-align: left;
}

/* ============================================================
   ABOUT US & GREG STORY
   ============================================================ */
.about-card {
	background: #FFFFFF;
	border: 1px solid var(--gray-200);
	border-radius: var(--radius-lg);
	padding: 2.5rem;
	box-shadow: var(--shadow-md);
}

.about-quote {
	background: var(--orange-50);
	border-left: 4px solid var(--orange-500);
	padding: 1.25rem;
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
	margin: 1.5rem 0;
	font-style: italic;
	color: var(--navy-950);
	font-weight: 500;
}

.owner-signature-block {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-top: 1.5rem;
}

.owner-avatar {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--navy-800);
	color: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 700;
	border: 2px solid var(--orange-500);
}

/* ============================================================
   REVIEWS & TESTIMONIALS
   ============================================================ */
.reviews-filter-bar {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	justify-content: center;
	margin-bottom: 2rem;
}

.filter-btn {
	padding: 0.45rem 1rem;
	border-radius: 9999px;
	font-size: 0.85rem;
	font-weight: 600;
	background: #FFFFFF;
	border: 1px solid var(--gray-300);
	color: var(--gray-700);
	cursor: pointer;
	transition: all 0.15s ease;
}

.filter-btn.active, .filter-btn:hover {
	background: var(--navy-900);
	color: #FFFFFF;
	border-color: var(--navy-900);
}

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

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

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

.review-card {
	background: #FFFFFF;
	border: 1px solid var(--gray-200);
	border-radius: var(--radius);
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	box-shadow: var(--shadow-sm);
	position: relative;
}

.review-stars {
	color: #F59E0B;
	font-size: 1.1rem;
	letter-spacing: 0.1em;
	margin-bottom: 0.5rem;
}

.review-text {
	font-size: 0.95rem;
	color: var(--gray-700);
	line-height: 1.55;
	margin-bottom: 1.25rem;
}

.review-author-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid var(--gray-100);
	padding-top: 0.75rem;
}

.author-info {
	display: flex;
	flex-direction: column;
}

.author-name {
	font-weight: 700;
	font-size: 0.9rem;
	color: var(--navy-950);
}

.author-location {
	font-size: 0.75rem;
	color: var(--gray-500);
}

.review-service-tag {
	font-size: 0.75rem;
	background: var(--gray-100);
	padding: 0.2rem 0.5rem;
	border-radius: 4px;
	color: var(--navy-800);
	font-weight: 600;
}

/* ============================================================
   LOCATION, MAP & HOURS
   ============================================================ */
.location-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

@media (min-width: 960px) {
	.location-grid {
		grid-template-columns: 1.1fr 0.9fr;
	}
}

.map-embed-wrapper {
	width: 100%;
	height: 380px;
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--gray-300);
	box-shadow: var(--shadow-md);
	position: relative;
}

.hours-table {
	width: 100%;
	border-collapse: collapse;
}

.hours-row {
	display: flex;
	justify-content: space-between;
	padding: 0.65rem 0.5rem;
	border-bottom: 1px solid var(--gray-200);
	font-size: 0.925rem;
}

.hours-row.today {
	background: var(--orange-50);
	font-weight: 700;
	color: var(--orange-600);
	border-radius: var(--radius-sm);
}

.contact-quick-box {
	background: var(--navy-900);
	color: #FFFFFF;
	border-radius: var(--radius);
	padding: 1.5rem;
	margin-top: 1.5rem;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list {
	max-width: 800px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
}

.faq-item {
	background: #FFFFFF;
	border: 1px solid var(--gray-200);
	border-radius: var(--radius);
	overflow: hidden;
	transition: border-color 0.15s ease;
}

.faq-item:hover {
	border-color: var(--orange-400);
}

.faq-question {
	width: 100%;
	text-align: left;
	padding: 1.15rem 1.25rem;
	background: none;
	border: none;
	font-family: var(--font-display);
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--navy-950);
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
}

.faq-icon {
	font-size: 1.25rem;
	color: var(--orange-500);
	transition: transform 0.2s ease;
}

.faq-answer {
	padding: 0 1.25rem 1.15rem;
	font-size: 0.95rem;
	color: var(--gray-600);
	line-height: 1.6;
}

/* ============================================================
   MODALS / INTERACTIVE OVERLAYS
   ============================================================ */
.modal-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(13, 27, 54, 0.7);
	backdrop-filter: blur(4px);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	padding: 1rem;
}

.modal-content {
	background: #FFFFFF;
	border-radius: var(--radius-lg);
	max-width: 540px;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: var(--shadow-xl);
	position: relative;
	padding: 2rem;
}

.modal-close-btn {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: var(--gray-100);
	border: none;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	cursor: pointer;
	color: var(--gray-700);
}

/* ============================================================
   STICKY MOBILE BOTTOM BAR
   ============================================================ */
.mobile-sticky-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--navy-950);
	border-top: 1px solid rgba(255,255,255,0.15);
	padding: 0.6rem 0.75rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	z-index: 99;
	box-shadow: 0 -4px 15px rgba(0,0,0,0.25);
}

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

.mobile-sticky-call {
	flex: 1.4;
	background: var(--orange-500);
	color: #FFFFFF !important;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	padding: 0.75rem 0.5rem;
	border-radius: var(--radius-sm);
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.95rem;
	text-decoration: none;
}

.mobile-sticky-dir {
	flex: 1;
	background: rgba(255,255,255,0.12);
	color: #FFFFFF !important;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	padding: 0.75rem 0.5rem;
	border-radius: var(--radius-sm);
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 0.85rem;
}

.mobile-sticky-quote {
	flex: 1;
	background: var(--navy-700);
	color: #FFFFFF !important;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	padding: 0.75rem 0.5rem;
	border-radius: var(--radius-sm);
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 0.85rem;
	border: none;
	cursor: pointer;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
	background: var(--navy-950);
	color: #94A3B8;
	padding: 3.5rem 0 2rem;
	border-top: 1px solid rgba(255,255,255,0.08);
}

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

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

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

.footer-col-title {
	font-family: var(--font-display);
	font-size: 1.1rem;
	color: #FFFFFF;
	font-weight: 700;
	margin-bottom: 1rem;
}

.footer-links-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	font-size: 0.9rem;
}

.footer-links-list a:hover {
	color: var(--orange-400);
}

.footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.08);
	padding-top: 1.5rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	font-size: 0.85rem;
	gap: 1rem;
}

/* Tire Explainer Tool Graphic */
.tire-graphic-box {
	background: var(--navy-900);
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: var(--radius);
	padding: 1.25rem;
	color: #FFFFFF;
	margin-top: 1.5rem;
}

.sidewall-visual {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-family: var(--font-display);
	font-size: 1.6rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	padding: 0.8rem;
	background: var(--navy-950);
	border-radius: var(--radius-sm);
	margin-bottom: 0.8rem;
}

.sw-width { color: #60A5FA; }
.sw-ratio { color: #34D399; }
.sw-rim { color: #FB923C; }

.sidewall-legend {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.5rem;
	font-size: 0.75rem;
	text-align: center;
}

/* Notification banner / toast */
.toast-success {
	background: #064E3B;
	color: #A7F3D0;
	border: 1px solid #059669;
	padding: 0.85rem 1rem;
	border-radius: var(--radius-sm);
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.brand-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 0.5rem;
}

.brand-chip {
	background: #FFFFFF;
	border: 1px solid var(--gray-300);
	padding: 0.35rem 0.75rem;
	border-radius: 6px;
	font-weight: 700;
	font-size: 0.8rem;
	color: var(--navy-900);
}
