/* Superior Performance Inc - High Performance Automotive Stylesheet */

:root {
	--bg-main: #0a0c10;
	--bg-surface: #11141c;
	--bg-card: #161b26;
	--bg-card-hover: #1d2332;
	--bg-glass: rgba(17, 20, 28, 0.85);
	--border-subtle: #232a3b;
	--border-focus: #e62020;
	
	--red-primary: #e62020;
	--red-bright: #ff3838;
	--red-glow: rgba(230, 32, 32, 0.35);
	--red-subtle: rgba(230, 32, 32, 0.12);
	
	--silver-bright: #f8fafc;
	--silver-mid: #cbd5e1;
	--silver-dark: #64748b;
	--silver-accent: #94a3b8;
	
	--gold-star: #fbbf24;
	--green-status: #10b981;
	
	--font-display: 'Teko', sans-serif;
	--font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
	--font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	
	--radius-sm: 6px;
	--radius-md: 10px;
	--radius-lg: 16px;
	--radius-full: 9999px;
	
	--shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.6);
	--shadow-red: 0 0 25px rgba(230, 32, 32, 0.35);
	--transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
	scroll-behavior: smooth;
	background-color: var(--bg-main);
	color: var(--silver-bright);
	font-family: var(--font-body);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	background: var(--bg-main);
	color: var(--silver-mid);
	line-height: 1.6;
	overflow-x: hidden;
	padding-bottom: 48px; /* Space for ultra-slim mobile action bar */
}

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

/* Carbon & Geometric Pattern Backgrounds */
.carbon-grid {
	background-image: 
		radial-gradient(circle at 50% 0%, rgba(230, 32, 32, 0.15) 0%, transparent 60%),
		linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
	background-size: 100% 100%, 32px 32px, 32px 32px;
}

.subtle-metal {
	background: linear-gradient(180deg, #131722 0%, #0d1017 100%);
	border: 1px solid var(--border-subtle);
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
	color: var(--silver-bright);
	font-family: var(--font-heading);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.02em;
}

.display-title {
	font-family: var(--font-display);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	line-height: 0.95;
}

.text-red {
	color: var(--red-bright);
}

.text-silver {
	color: var(--silver-mid);
}

.text-muted {
	color: var(--silver-dark);
}

/* Navigation Header */
.header-sticky {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(10, 12, 16, 0.92);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--border-subtle);
	transition: var(--transition-fast);
}

.top-bar {
	display: none;
	background: #07080b;
	border-bottom: 1px solid #1a202c;
	font-size: 0.8125rem;
	padding: 0.35rem 1rem;
	color: var(--silver-accent);
}

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

.top-bar-inner {
	max-width: 1240px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
}

.header-main {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0.4rem 0.75rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
}

@media (min-width: 768px) {
	.header-main {
		padding: 0.85rem 1.25rem;
		gap: 1.5rem;
	}
}

.logo-link {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	text-decoration: none;
	color: inherit;
}

.logo-emblem {
	width: 32px;
	height: 32px;
	background: linear-gradient(135deg, #e62020 0%, #8b0000 100%);
	border-radius: var(--radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 10px var(--red-glow);
	border: 1px solid rgba(255, 255, 255, 0.2);
	flex-shrink: 0;
}

@media (min-width: 768px) {
	.logo-emblem {
		width: 44px;
		height: 44px;
		box-shadow: 0 0 15px var(--red-glow);
	}
}

.logo-text-wrap {
	display: flex;
	flex-direction: column;
}

.logo-brand {
	font-family: var(--font-display);
	font-size: 1.25rem;
	line-height: 0.95;
	font-weight: 700;
	letter-spacing: 0.03em;
	color: #ffffff;
	white-space: nowrap;
}

@media (min-width: 768px) {
	.logo-brand {
		font-size: 1.85rem;
		letter-spacing: 0.05em;
	}
}

.logo-tag {
	display: none;
	font-size: 0.6875rem;
	font-weight: 700;
	color: var(--red-bright);
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

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

.nav-desktop {
	display: none;
	align-items: center;
	gap: 1.75rem;
}

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

.nav-link {
	color: var(--silver-mid);
	text-decoration: none;
	font-size: 0.925rem;
	font-weight: 600;
	transition: color 0.2s;
	display: flex;
	align-items: center;
	gap: 0.35rem;
}

.nav-link:hover {
	color: var(--red-bright);
}

.nav-actions {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

@media (min-width: 768px) {
	.nav-actions {
		gap: 0.85rem;
	}
}

.mobile-menu-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #18202e;
	border: 1px solid #2d3b55;
	color: #ffffff;
	border-radius: var(--radius-sm);
	padding: 0.35rem 0.5rem;
	cursor: pointer;
	font-size: 1rem;
}

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

.mobile-menu-drawer {
	position: fixed;
	top: 48px;
	left: 0;
	right: 0;
	background: #0d1017;
	border-bottom: 2px solid var(--red-primary);
	padding: 1rem 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	z-index: 98;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.mobile-menu-drawer a {
	color: #cbd5e1;
	text-decoration: none;
	font-size: 1rem;
	font-weight: 600;
	padding: 0.4rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu-drawer a:hover {
	color: var(--red-bright);
}

/* Buttons */
.btn-primary {
	background: linear-gradient(135deg, #ff3333 0%, #d41414 100%);
	color: #ffffff;
	border: none;
	padding: 0.75rem 1.4rem;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 0.95rem;
	border-radius: var(--radius-sm);
	cursor: pointer;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	box-shadow: 0 4px 18px var(--red-glow);
	transition: all 0.2s ease;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.btn-primary:hover {
	background: linear-gradient(135deg, #ff4d4d 0%, #e62020 100%);
	transform: translateY(-2px);
	box-shadow: 0 6px 24px rgba(230, 32, 32, 0.55);
}

.btn-secondary {
	background: rgba(255, 255, 255, 0.05);
	color: var(--silver-bright);
	border: 1px solid var(--border-subtle);
	padding: 0.75rem 1.4rem;
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 0.95rem;
	border-radius: var(--radius-sm);
	cursor: pointer;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	transition: all 0.2s ease;
}

.btn-secondary:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: var(--silver-mid);
	transform: translateY(-2px);
}

.btn-phone-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: #151a24;
	border: 1px solid var(--border-subtle);
	padding: 0.55rem 1rem;
	border-radius: var(--radius-full);
	color: var(--silver-bright);
	text-decoration: none;
	font-weight: 700;
	font-size: 0.9rem;
	transition: all 0.2s ease;
}

.btn-phone-pill:hover {
	border-color: var(--red-bright);
	background: var(--red-subtle);
	color: var(--red-bright);
}

/* Hero Section */
.hero-section {
	position: relative;
	min-height: 85vh;
	display: flex;
	align-items: center;
	padding: 4rem 1.25rem 5rem;
	overflow: hidden;
	background: #0a0c10;
}

.hero-bg-overlay {
	position: absolute;
	inset: 0;
	background: 
		linear-gradient(to right, rgba(10, 12, 16, 0.95) 20%, rgba(10, 12, 16, 0.75) 60%, rgba(10, 12, 16, 0.9) 100%),
		radial-gradient(circle at 75% 40%, rgba(230, 32, 32, 0.22) 0%, transparent 50%);
	z-index: 1;
}

.hero-bg-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 35%;
	filter: saturate(1.2) contrast(1.15) brightness(0.65);
	z-index: 0;
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 1240px;
	margin: 0 auto;
	width: 100%;
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
}

@media (min-width: 992px) {
	.hero-content {
		grid-template-columns: 1.15fr 0.85fr;
		align-items: center;
	}
}

.badge-tag {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.35rem 0.85rem;
	background: rgba(230, 32, 32, 0.15);
	border: 1px solid rgba(230, 32, 32, 0.4);
	color: var(--red-bright);
	font-weight: 700;
	font-size: 0.8125rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	border-radius: var(--radius-full);
	margin-bottom: 1.25rem;
}

.hero-h1 {
	font-size: clamp(2.3rem, 5.5vw, 4.2rem);
	font-weight: 900;
	line-height: 1.05;
	margin-bottom: 1.25rem;
	text-transform: uppercase;
	font-family: var(--font-heading);
}

.hero-sub {
	font-size: clamp(1.05rem, 2vw, 1.25rem);
	color: var(--silver-mid);
	line-height: 1.5;
	margin-bottom: 2rem;
	max-width: 36rem;
}

.hero-ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 2.5rem;
}

.trust-signals-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--border-subtle);
}

.trust-item {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--silver-mid);
}

.trust-icon {
	color: var(--red-bright);
}

/* Quick Intake Hero Card */
.hero-intake-card {
	background: rgba(17, 20, 28, 0.95);
	border: 1px solid var(--border-subtle);
	border-top: 3px solid var(--red-bright);
	border-radius: var(--radius-lg);
	padding: 2rem;
	box-shadow: var(--shadow-card), var(--shadow-red);
	backdrop-filter: blur(16px);
}

.intake-header {
	margin-bottom: 1.25rem;
}

.intake-title {
	font-size: 1.4rem;
	font-weight: 800;
	text-transform: uppercase;
	margin-bottom: 0.25rem;
}

.intake-sub {
	font-size: 0.85rem;
	color: var(--silver-dark);
}

/* Stats Ribbon */
.stats-ribbon {
	background: #0f131a;
	border-top: 1px solid var(--border-subtle);
	border-bottom: 1px solid var(--border-subtle);
	padding: 1.5rem 1.25rem;
}

.stats-grid {
	max-width: 1240px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}

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

.stat-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 0.5rem;
}

.stat-number {
	font-family: var(--font-display);
	font-size: 3rem;
	line-height: 0.9;
	color: var(--silver-bright);
	font-weight: 700;
}

.stat-number span {
	color: var(--red-bright);
}

.stat-label {
	font-size: 0.8125rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--silver-accent);
	font-weight: 600;
	margin-top: 0.35rem;
}

/* Section Containers */
.section-wrap {
	max-width: 1240px;
	margin: 0 auto;
	padding: 5rem 1.25rem;
}

.section-head {
	text-align: center;
	max-width: 44rem;
	margin: 0 auto 3.5rem;
}

.section-tag {
	color: var(--red-bright);
	font-weight: 800;
	font-size: 0.8125rem;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	display: block;
	margin-bottom: 0.5rem;
}

.section-h2 {
	font-size: clamp(2rem, 3.5vw, 2.75rem);
	font-weight: 800;
	text-transform: uppercase;
	margin-bottom: 0.75rem;
}

.section-desc {
	color: var(--silver-accent);
	font-size: 1.05rem;
}

/* Service Cards */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(20rem, 100%), 1fr));
	gap: 1.5rem;
}

.service-card {
	background: var(--bg-surface);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-md);
	padding: 2rem 1.5rem;
	display: flex;
	flex-direction: column;
	transition: all 0.25s ease;
	position: relative;
	overflow: hidden;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: transparent;
	transition: background 0.25s;
}

.service-card:hover {
	transform: translateY(-4px);
	border-color: #3b455b;
	background: var(--bg-card-hover);
	box-shadow: var(--shadow-card);
}

.service-card:hover::before {
	background: var(--red-bright);
}

.service-icon-box {
	width: 56px;
	height: 56px;
	border-radius: var(--radius-sm);
	background: rgba(230, 32, 32, 0.1);
	border: 1px solid rgba(230, 32, 32, 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--red-bright);
	margin-bottom: 1.25rem;
	transition: transform 0.2s;
}

.service-card:hover .service-icon-box {
	transform: scale(1.08);
	background: rgba(230, 32, 32, 0.2);
}

.service-title {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0.65rem;
	color: var(--silver-bright);
}

.service-summary {
	color: var(--silver-accent);
	font-size: 0.925rem;
	line-height: 1.55;
	margin-bottom: 1.25rem;
	flex-grow: 1;
}

.service-features-list {
	list-style: none;
	margin-bottom: 1.5rem;
	display: grid;
	gap: 0.45rem;
}

.service-features-list li {
	font-size: 0.825rem;
	color: var(--silver-mid);
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.service-features-list li::before {
	content: '▸';
	color: var(--red-bright);
	font-weight: bold;
}

.service-link-btn {
	background: transparent;
	border: 1px solid var(--border-subtle);
	color: var(--silver-bright);
	padding: 0.55rem 1rem;
	border-radius: var(--radius-sm);
	font-size: 0.875rem;
	font-weight: 700;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: all 0.2s;
	text-decoration: none;
}

.service-link-btn:hover {
	border-color: var(--red-bright);
	color: var(--red-bright);
	background: var(--red-subtle);
}

/* Why Choose Us Cards */
.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(17rem, 100%), 1fr));
	gap: 1.5rem;
}

.benefit-card {
	background: var(--bg-surface);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-md);
	padding: 2rem 1.5rem;
	text-align: left;
	position: relative;
	transition: var(--transition-fast);
}

.benefit-card:hover {
	border-color: #3b455b;
	background: #141923;
}

.benefit-badge-num {
	position: absolute;
	top: 1rem;
	right: 1.25rem;
	font-family: var(--font-display);
	font-size: 2.2rem;
	color: rgba(255, 255, 255, 0.08);
	font-weight: 700;
}

.benefit-icon {
	color: var(--red-bright);
	margin-bottom: 1rem;
}

.benefit-title {
	font-size: 1.15rem;
	margin-bottom: 0.5rem;
}

.benefit-desc {
	font-size: 0.9rem;
	color: var(--silver-accent);
}

/* Before & After / Showcase Section */
.showcase-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(22rem, 100%), 1fr));
	gap: 2rem;
}

.showcase-card {
	background: var(--bg-surface);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-card);
}

.showcase-img-wrap {
	position: relative;
	height: 220px;
	overflow: hidden;
	background: #080a0e;
}

.showcase-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.showcase-card:hover .showcase-img {
	transform: scale(1.05);
}

.showcase-badge {
	position: absolute;
	top: 1rem;
	left: 1rem;
	background: rgba(10, 12, 16, 0.85);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #ffffff;
	font-size: 0.75rem;
	font-weight: 700;
	padding: 0.25rem 0.65rem;
	border-radius: var(--radius-full);
	backdrop-filter: blur(4px);
}

.showcase-body {
	padding: 1.5rem;
}

.showcase-vehicle {
	font-size: 1.15rem;
	font-weight: 800;
	margin-bottom: 0.35rem;
}

.showcase-service {
	color: var(--red-bright);
	font-size: 0.85rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
	text-transform: uppercase;
}

.showcase-desc {
	font-size: 0.875rem;
	color: var(--silver-accent);
	margin-bottom: 1rem;
}

.showcase-specs {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.spec-pill {
	background: #0d1017;
	border: 1px solid #202737;
	padding: 0.25rem 0.65rem;
	border-radius: var(--radius-sm);
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--silver-mid);
}

/* About Section */
.about-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	align-items: center;
}

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

.about-img-box {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--border-subtle);
	box-shadow: var(--shadow-card);
}

.about-img {
	width: 100%;
	height: 420px;
	object-fit: cover;
	display: block;
	filter: contrast(1.1) brightness(0.85);
}

.about-float-badge {
	position: absolute;
	bottom: 1.5rem;
	right: 1.5rem;
	background: rgba(17, 20, 28, 0.95);
	border: 1px solid var(--border-subtle);
	border-left: 4px solid var(--red-bright);
	padding: 1rem 1.25rem;
	border-radius: var(--radius-md);
	backdrop-filter: blur(10px);
}

.motto-banner {
	background: linear-gradient(90deg, rgba(230, 32, 32, 0.15) 0%, transparent 100%);
	border-left: 4px solid var(--red-bright);
	padding: 1rem 1.25rem;
	margin: 1.5rem 0;
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.motto-text {
	font-family: var(--font-display);
	font-size: 1.85rem;
	line-height: 1;
	color: #ffffff;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

/* Testimonials & Facebook Social Proof */
.facebook-proof-banner {
	background: linear-gradient(135deg, #18253a 0%, #0e1622 100%);
	border: 1px solid #2d3b55;
	border-radius: var(--radius-lg);
	padding: 2rem;
	margin-bottom: 3rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	text-align: center;
}

@media (min-width: 768px) {
	.facebook-proof-banner {
		flex-direction: row;
		text-align: left;
	}
}

.fb-brand-box {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.fb-icon-circle {
	width: 52px;
	height: 52px;
	background: #1877f2;
	color: #ffffff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4);
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(20rem, 100%), 1fr));
	gap: 1.5rem;
}

.testimonial-card {
	background: var(--bg-surface);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-md);
	padding: 2rem 1.75rem;
	display: flex;
	flex-direction: column;
	position: relative;
}

.testimonial-quote {
	font-size: 0.95rem;
	color: var(--silver-bright);
	line-height: 1.6;
	margin-bottom: 1.5rem;
	flex-grow: 1;
	font-style: italic;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	border-top: 1px solid var(--border-subtle);
	padding-top: 1rem;
}

.author-avatar {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #202737;
	border: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	color: var(--silver-bright);
	font-size: 0.9rem;
}

.stars-row {
	color: var(--gold-star);
	display: flex;
	gap: 0.2rem;
	margin-bottom: 0.85rem;
}

/* Contact & Location Section */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
}

@media (min-width: 992px) {
	.contact-grid {
		grid-template-columns: 1fr 1.15fr;
	}
}

.contact-info-card {
	background: var(--bg-surface);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	padding: 2.25rem;
}

.info-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1.75rem;
}

.info-icon-box {
	width: 44px;
	height: 44px;
	border-radius: var(--radius-sm);
	background: rgba(230, 32, 32, 0.12);
	color: var(--red-bright);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.hours-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 0.5rem;
	font-size: 0.875rem;
}

.hours-table tr {
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hours-table td {
	padding: 0.45rem 0;
	color: var(--silver-accent);
}

.hours-table td:last-child {
	text-align: right;
	font-weight: 600;
	color: var(--silver-bright);
}

.map-container {
	border-radius: var(--radius-md);
	overflow: hidden;
	border: 1px solid var(--border-subtle);
	height: 250px;
	margin-top: 1.5rem;
}

/* Form Styles */
.form-box {
	background: var(--bg-surface);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	padding: 2.25rem;
}

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

.form-label {
	display: block;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--silver-bright);
	margin-bottom: 0.4rem;
}

.form-input, .form-select, .form-textarea {
	width: 100%;
	background: #0d1017;
	border: 1px solid #232a3a;
	border-radius: var(--radius-sm);
	padding: 0.75rem 1rem;
	color: #ffffff;
	font-family: inherit;
	font-size: 0.95rem;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
	outline: none;
	border-color: var(--red-bright);
	box-shadow: 0 0 0 3px rgba(230, 32, 32, 0.2);
}

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

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

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

/* Modal */
.modal-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.85);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	animation: modalFadeIn 0.2s ease-out;
}

@keyframes modalFadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

.modal-dialog {
	background: #121620;
	border: 1px solid var(--border-subtle);
	border-top: 3px solid var(--red-bright);
	border-radius: var(--radius-lg);
	width: 100%;
	max-width: 620px;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
	animation: modalSlideUp 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalSlideUp {
	from { transform: translateY(20px) scale(0.97); }
	to { transform: translateY(0) scale(1); }
}

.modal-head {
	padding: 1.5rem 1.75rem;
	border-bottom: 1px solid var(--border-subtle);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.modal-close-btn {
	background: transparent;
	border: none;
	color: var(--silver-dark);
	font-size: 1.5rem;
	cursor: pointer;
	line-height: 1;
	padding: 0.35rem;
	border-radius: var(--radius-sm);
	transition: color 0.2s;
}

.modal-close-btn:hover {
	color: #ffffff;
}

.modal-body {
	padding: 1.75rem;
}

/* Mobile Sticky Bottom Bar - Ultra Compact */
.mobile-action-bar {
	display: flex;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(10, 12, 16, 0.96);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 0.28rem 0.6rem;
	z-index: 99;
	gap: 0.5rem;
	height: 44px;
	align-items: center;
	box-sizing: border-box;
}

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

.btn-mobile-call {
	flex: 1;
	background: #151b27;
	border: 1px solid #283449;
	color: #ffffff;
	font-weight: 700;
	font-size: 0.78rem;
	padding: 0.35rem 0.5rem;
	border-radius: var(--radius-sm);
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	height: 34px;
}

.btn-mobile-book {
	flex: 1.15;
	background: linear-gradient(135deg, #ff3333 0%, #d41414 100%);
	color: #ffffff;
	font-weight: 700;
	font-size: 0.78rem;
	padding: 0.35rem 0.5rem;
	border-radius: var(--radius-sm);
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	height: 34px;
}
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	text-transform: uppercase;
}

/* Footer */
.footer-main {
	background: #06080b;
	border-top: 1px solid var(--border-subtle);
	padding: 4.5rem 1.25rem 2rem;
	color: var(--silver-dark);
}

.footer-inner {
	max-width: 1240px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(16rem, 100%), 1fr));
	gap: 2.5rem;
	margin-bottom: 3.5rem;
}

.footer-col-title {
	color: #ffffff;
	font-size: 1.05rem;
	font-weight: 700;
	margin-bottom: 1.25rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.footer-links {
	list-style: none;
	display: grid;
	gap: 0.65rem;
}

.footer-links a {
	color: var(--silver-accent);
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.2s;
}

.footer-links a:hover {
	color: var(--red-bright);
}

.footer-bottom {
	max-width: 1240px;
	margin: 0 auto;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	padding-top: 1.75rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: center;
	justify-content: space-between;
	font-size: 0.8125rem;
}

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

/* Success Message Box */
.success-card {
	background: rgba(16, 185, 129, 0.1);
	border: 1px solid rgba(16, 185, 129, 0.3);
	border-radius: var(--radius-md);
	padding: 1.5rem;
	text-align: center;
	color: #ffffff;
}

.success-icon {
	color: #10b981;
	margin-bottom: 0.75rem;
}

/* Status indicator pill */
.status-pill-open {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	background: rgba(16, 185, 129, 0.15);
	border: 1px solid rgba(16, 185, 129, 0.35);
	color: #34d399;
	font-size: 0.75rem;
	font-weight: 700;
	padding: 0.15rem 0.55rem;
	border-radius: var(--radius-full);
}

.status-dot-pulse {
	width: 6px;
	height: 6px;
	background: #10b981;
	border-radius: 50%;
	box-shadow: 0 0 8px #10b981;
}

/* Utility Animations */
.pulse-glow {
	animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
	0%, 100% { box-shadow: 0 0 15px rgba(230, 32, 32, 0.3); }
	50% { box-shadow: 0 0 28px rgba(230, 32, 32, 0.65); }
}
