/* styles.css - Summary
Purpose: Site-wide dark theme styling, layout, and components for The Jack (WNY handyman). Handles navbar, hero, introduction, core tenets, services, service area, contact (Jobber embed), and footer.
Data flow: Pure CSS consumed by index.html. No CSS frameworks. Icons via FontAwesome; fonts via Google Fonts.
Notable sections: Navigation styles; CTA buttons; Hero gradient background (.parallax-bg used as static BG); Introduction; Core Tenets cards; Services grid with icons; Service Area banner; Contact (Jobber form container); Footer; Responsive rules. Social styles removed (section is currently hidden). Legacy/unused rules removed: Instagram feed styles, feature-card, service-image parallax.
*/

/* CSS Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', sans-serif;
	line-height: 1.6;
	color: #ffffff;
	background-color: #1a1a1a;
	overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1rem;
}

h1 {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 900;
}

h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 800;
}

h3 {
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
}

p {
	font-size: 1.1rem;
	margin-bottom: 1rem;
	color: #e0e0e0;
}

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

/* Navigation */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(26, 26, 26, 0.95);
	backdrop-filter: blur(10px);
	z-index: 1000;
	padding: 1rem 0;
	transition: all 0.3s ease;
	border-bottom: 1px solid #333;
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo-container {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.logo-icon {
	font-size: 2rem;
	color: #ffd700;
	font-weight: bold;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.nav-logo h2 {
	font-family: 'Poppins', sans-serif;
	font-size: 1.8rem;
	font-weight: 800;
	color: #ffffff;
	margin: 0;
}

.nav-menu {
	display: flex;
	gap: 1.5rem;
	align-items: center;
	flex-wrap: wrap;
}

.nav-link {
	text-decoration: none;
	color: #ffffff;
	font-weight: 500;
	transition: color 0.3s ease;
	position: relative;
}

.nav-link:hover {
	color: #ffd700;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: #ffd700;
	transition: width 0.3s ease;
}

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

/* CTA Buttons */
.cta-button {
	display: inline-block;
	padding: 12px 30px;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	cursor: pointer;
}

.cta-button.primary {
	background: linear-gradient(135deg, #ffd700, #ffed4e);
	color: #1a1a1a;
	box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
	font-weight: 700;
}

.cta-button.primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.cta-button.secondary {
	background: transparent;
	color: #ffffff;
	border-color: #ffd700;
}

.cta-button.secondary:hover {
	background: #ffd700;
	color: #1a1a1a;
	transform: translateY(-2px);
}

/* Hero Section */
.hero {
	height: 100vh;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
}

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

.parallax-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
	background-image: radial-gradient(
			circle at 20% 80%,
			rgba(255, 215, 0, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 20%,
			rgba(255, 215, 0, 0.05) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 40% 40%,
			rgba(255, 215, 0, 0.03) 0%,
			transparent 50%
		);
}

.hero-content {
	max-width: 800px;
	padding: 0 2rem;
	z-index: 2;
}

.hero-logo {
	text-align: center;
	margin-bottom: 2rem;
}

.hero-logo-icon {
	font-size: 4rem;
	color: #ffd700;
	font-weight: bold;
	text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
	display: inline-block;
	animation: logoGlow 2s ease-in-out infinite alternate;
}

@keyframes logoGlow {
	from {
		text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7),
			0 0 20px rgba(255, 215, 0, 0.3);
	}
	to {
		text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7),
			0 0 30px rgba(255, 215, 0, 0.6);
	}
}

.hero-title {
	color: white;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
	margin-bottom: 1.5rem;
}

.hero-subtitle {
	color: #f8f9fa;
	font-size: 1.3rem;
	margin-bottom: 2.5rem;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-cta {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	flex-wrap: wrap;
}

.scroll-indicator {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	animation: bounce 2s infinite;
}

.scroll-arrow {
	width: 30px;
	height: 30px;
	border-right: 3px solid white;
	border-bottom: 3px solid white;
	transform: rotate(45deg);
}

@keyframes bounce {
	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateX(-50%) translateY(0);
	}
	40% {
		transform: translateX(-50%) translateY(-10px);
	}
	60% {
		transform: translateX(-50%) translateY(-5px);
	}
}

/* Section Headers */
.section-header {
	text-align: center;
	margin-bottom: 4rem;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.section-header h2 {
	color: #ffffff;
	margin-bottom: 1rem;
}

.section-header p {
	font-size: 1.2rem;
	color: #e0e0e0;
}

/* Introduction Section */
.introduction {
	padding: 4rem 0;
	background: #1a1a1a;
	border-bottom: 1px solid #333;
}

.intro-content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.intro-text {
	font-size: 1.2rem;
	color: #e0e0e0;
	margin-bottom: 1.5rem;
	line-height: 1.7;
}

.intro-text:last-child {
	margin-bottom: 0;
	font-weight: 500;
}

/* Core Tenets Section */
.core-tenets {
	padding: 6rem 0;
	background: #2a2a2a;
}

.tenets-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2.5rem;
	margin: 3rem 0;
}

.tenet-card {
	text-align: center;
	padding: 2.5rem 2rem;
	border-radius: 15px;
	background: #1a1a1a;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 2px solid #333;
}

.tenet-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
	border-color: #ffd700;
}

.tenet-icon {
	font-size: 3.5rem;
	margin-bottom: 1.5rem;
	display: block;
	color: #ffd700;
}

.tenet-card h3 {
	color: #ffffff;
	margin-bottom: 1rem;
	font-size: 1.5rem;
}

.tenet-card p {
	color: #e0e0e0;
	line-height: 1.6;
	font-size: 1.1rem;
}

.tenets-intro {
	text-align: center;
	max-width: 800px;
	margin: 3rem auto 0;
	padding: 2rem;
	background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
	border-radius: 15px;
	border: 1px solid #333;
}

.tenets-intro p {
	font-size: 1.2rem;
	color: #ffffff;
	margin-bottom: 1.5rem;
}

.cta-text {
	font-weight: 600;
	color: #ffd700 !important;
	font-size: 1.3rem !important;
}

/* Services Section */
.services {
	padding: 6rem 0;
	background: #1a1a1a;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
	gap: 3rem;
	margin-top: 3rem;
}

.service-card {
	background: #2a2a2a;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 1px solid #333;
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
	border-color: #ffd700;
}

.service-icon {
	height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
	border-bottom: 1px solid #333;
}

.service-icon i {
	font-size: 4rem;
	color: #ffd700;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.service-content {
	padding: 2.5rem;
}

.service-content h3 {
	color: #ffffff;
	margin-bottom: 1rem;
}

.service-content p {
	margin-bottom: 1.5rem;
	color: #e0e0e0;
}

.service-content ul {
	list-style: none;
	padding: 0;
}

.service-content li {
	padding: 0.5rem 0;
	color: #e0e0e0;
	position: relative;
	padding-left: 1.5rem;
}

.service-content li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #ffd700;
	font-weight: bold;
}

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

.services-column ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.services-column li {
	padding: 0.5rem 0;
	color: #e0e0e0;
	position: relative;
	padding-left: 1.5rem;
	font-size: 0.95rem;
}

.services-column li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #ffd700;
	font-weight: bold;
}

/* Social section styles removed (section currently hidden) */

/* Service Area Section */
.service-area {
	padding: 4rem 0;
	background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
	color: white;
	text-align: center;
	border-top: 1px solid #333;
	border-bottom: 1px solid #333;
}

.area-content h2 {
	color: #ffffff;
	margin-bottom: 1rem;
}

.area-content p {
	color: #ffd700;
	font-size: 1.2rem;
	font-weight: 600;
}

/* Contact Section */
.contact {
	padding: 6rem 0;
	background: #1a1a1a;
}

.contact-content {
	text-align: center;
	margin-bottom: 3rem;
	margin-top: 3rem;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.contact-content h2 {
	color: #ffffff;
	margin-bottom: 1rem;
}

.contact-content p {
	color: #e0e0e0;
	margin-bottom: 1rem;
}

/* Request Cards */
.request-cards-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	max-width: 900px;
	margin: 0 auto;
}

.request-card {
	background: rgba(42, 42, 42, 0.9);
	border-radius: 15px;
	padding: 2.5rem;
	text-align: center;
	transition: all 0.3s ease;
	border: 2px solid #333;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.request-card:hover {
	transform: translateY(-5px);
	border-color: #ffd700;
	box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.request-card-icon {
	font-size: 3rem;
	color: #ffd700;
	margin-bottom: 1rem;
}

.request-card h3 {
	color: #ffffff;
	margin: 0.5rem 0 1rem;
	font-size: 1.5rem;
	font-family: 'Poppins', sans-serif;
}

.request-card p {
	color: #e0e0e0;
	margin: 0 0 1.5rem;
	line-height: 1.6;
	flex-grow: 1;
}

.request-card-button {
	display: inline-block;
	background: linear-gradient(135deg, #ffd700, #ffed4e);
	color: #1a1a1a;
	padding: 0.75rem 2rem;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 700;
	font-size: 1rem;
	transition: all 0.3s ease;
	margin-top: auto;
	border: none;
	cursor: pointer;
}

.request-card-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.jobber-form-container {
	max-width: 800px;
	margin: 0 auto;
	background: #2a2a2a;
	padding: 2rem;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	border: 1px solid #333;
}

/* Footer */
.footer {
	background: #0a0a0a;
	color: white;
	padding: 3rem 0 1.5rem;
	border-top: 1px solid #333;
}

.footer-content {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 2rem;
	gap: 2rem;
}

/* Brand Section */
.footer-brand {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.footer-logo-icon {
	font-size: 1.75rem;
	color: #ffd700;
	font-weight: bold;
}

.footer-brand h3 {
	color: #ffd700;
	margin: 0;
	font-family: 'Poppins', sans-serif;
	font-size: 1.25rem;
}

.footer-tagline {
	color: #e0e0e0;
	margin: 0;
	font-size: 0.95rem;
}

/* Info Section */
.footer-info {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	text-align: right;
}

.footer-location {
	color: #e0e0e0;
	margin: 0;
	font-size: 0.9rem;
}

.footer-link {
	color: #ffd700;
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.3s ease;
}

.footer-link:hover {
	color: #ffed4e;
	text-decoration: underline;
}

/* Copyright */
.footer-bottom {
	text-align: center;
	padding-top: 1.5rem;
	border-top: 1px solid #333;
	margin-top: 2rem;
}

.footer-bottom p {
	color: #999;
	margin: 0;
	font-size: 0.85rem;
}

/* Review CTA Section */
.reviews-cta {
	background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
	padding: 60px 0;
	text-align: center;
}

.reviews-cta h2 {
	color: #ffd700;
	margin-bottom: 15px;
}

.reviews-cta p {
	color: #ccc;
	margin-bottom: 30px;
	font-size: 1.1rem;
}

/* Review Modal */
.modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(5px);
}

.modal-content {
	background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
	margin: 5% auto;
	padding: 30px;
	border-radius: 15px;
	width: 90%;
	max-width: 500px;
	border: 1px solid #333;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.close {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
	transition: color 0.3s;
}

.close:hover {
	color: #ffd700;
}

/* Social Login Buttons */
.social-btn {
	width: 100%;
	padding: 12px 20px;
	margin: 10px 0;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.social-btn.google {
	background: #db4437;
	color: white;
}

.social-btn.google:hover {
	background: #c23321;
	transform: translateY(-2px);
}

.social-btn.facebook {
	background: #4267b2;
	color: white;
}

.social-btn.facebook:hover {
	background: #365899;
	transform: translateY(-2px);
}

.social-btn.email {
	background: #ffd700;
	color: #1a1a1a;
}

.social-btn.email:hover {
	background: #ffed4e;
	transform: translateY(-2px);
}

/* Email Form */
.form-group {
	margin: 15px 0;
}

.form-group label {
	display: block;
	color: #ffd700;
	font-weight: 600;
	margin-bottom: 5px;
}

.form-group input {
	width: 100%;
	padding: 12px 16px;
	border: 2px solid #333;
	border-radius: 8px;
	background: #1a1a1a;
	color: #fff;
	font-size: 16px;
	transition: border-color 0.3s;
}

.form-group input:focus {
	outline: none;
	border-color: #ffd700;
}

/* User Info */
.user-info {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
	padding: 15px;
	background: #333;
	border-radius: 8px;
}

.user-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
}

/* Star Rating */
.rating-section {
	margin: 20px 0;
}

.rating-section label {
	display: block;
	color: #ffd700;
	font-weight: 600;
	margin-bottom: 10px;
}

.stars {
	display: flex;
	gap: 5px;
	margin: 10px 0;
}

.star {
	font-size: 2.5rem;
	color: #333;
	cursor: pointer;
	transition: all 0.2s ease;
	user-select: none;
}

.star:hover {
	color: #ffd700;
	transform: scale(1.1);
}

.star.active {
	color: #ffd700;
}

#rating-text {
	color: #ccc;
	font-style: italic;
	margin-top: 5px;
}

/* Review Text */
.review-text-section {
	margin: 20px 0;
}

.review-text-section label {
	display: block;
	color: #ffd700;
	font-weight: 600;
	margin-bottom: 10px;
}

#review-textarea {
	width: 100%;
	min-height: 120px;
	padding: 15px;
	border: 2px solid #333;
	border-radius: 8px;
	background: #1a1a1a;
	color: #fff;
	font-size: 16px;
	resize: vertical;
	transition: border-color 0.3s;
}

#review-textarea:focus {
	outline: none;
	border-color: #ffd700;
}

.char-count {
	text-align: right;
	color: #666;
	font-size: 14px;
	margin-top: 5px;
}

/* Form Actions */
.form-actions {
	display: flex;
	gap: 15px;
	justify-content: flex-end;
	margin-top: 30px;
}

/* Reviews Display */
.reviews-display {
	background: #1a1a1a;
	padding: 60px 0;
}

.reviews-display h2 {
	text-align: center;
	color: #ffd700;
	margin-bottom: 40px;
}

.reviews-carousel {
	position: relative;
	overflow: hidden;
	margin: 30px 0;
}

.reviews-track {
	display: flex;
	transition: transform 0.5s ease;
	gap: 20px;
}

.review-card {
	min-width: 300px;
	background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
	padding: 25px;
	border-radius: 15px;
	border: 1px solid #333;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
	transition: transform 0.3s ease;
}

.review-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.review-header {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.review-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	margin-right: 15px;
	border: 2px solid #ffd700;
}

.review-info h4 {
	color: #ffd700;
	margin: 0 0 5px 0;
	font-size: 1.1rem;
}

.review-stars {
	color: #ffd700;
	font-size: 1.2rem;
	margin-bottom: 5px;
}

.review-text {
	color: #ccc;
	line-height: 1.6;
	margin-bottom: 15px;
	font-style: italic;
}

.review-date {
	color: #666;
	font-size: 0.9rem;
	text-align: right;
}

/* Carousel Controls */
.carousel-controls {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin: 20px 0;
}

.carousel-btn {
	background: #ffd700;
	color: #1a1a1a;
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	font-size: 1.5rem;
	cursor: pointer;
	transition: all 0.3s ease;
}

.carousel-btn:hover {
	background: #ffed4e;
	transform: scale(1.1);
}

.carousel-dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 20px;
}

.dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #333;
	cursor: pointer;
	transition: background 0.3s;
}

.dot.active {
	background: #ffd700;
}

/* No Reviews State */
.no-reviews {
	text-align: center;
	padding: 40px 20px;
}

.no-reviews h3 {
	color: #ffd700;
	margin-bottom: 15px;
}

.no-reviews p {
	color: #ccc;
	margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
	.nav-menu {
		flex-direction: column;
		gap: 1rem;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: white;
		padding: 1rem;
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
		transform: translateY(-100%);
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease;
	}

	.nav-menu.active {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
	}

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

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

	.tenets-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.tenet-card {
		padding: 2rem 1.5rem;
	}

	.tenets-intro {
		padding: 1.5rem;
	}

	.intro-content {
		padding: 0 1rem;
	}

	/* Request Cards Mobile */
	.request-cards-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		padding: 0 1rem;
	}

	.request-card {
		padding: 2rem 1.5rem;
	}

	.request-card-icon {
		font-size: 2.5rem;
	}

	.request-card h3 {
		font-size: 1.3rem;
	}

	.request-card p {
		font-size: 0.95rem;
	}

	.intro-text {
		font-size: 1.1rem;
	}

	.hero-logo-icon {
		font-size: 3rem;
	}

	.logo-container {
		gap: 0.3rem;
	}

	.logo-icon {
		font-size: 1.5rem;
	}

	.nav-logo h2 {
		font-size: 1.5rem;
	}

	.service-icon {
		height: 150px;
	}

	.service-icon i {
		font-size: 3rem;
	}

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

	.services-column li {
		font-size: 0.9rem;
	}

	/* Social section responsive rules removed */

	.container {
		padding: 0 1rem;
	}

	.hero-content {
		padding: 0 1rem;
	}

	.service-content {
		padding: 2rem;
	}

	.jobber-form-container {
		padding: 1.5rem;
	}

	.modal-content {
		margin: 10% auto;
		padding: 20px;
	}

	.review-card {
		min-width: 280px;
	}

	.reviews-track {
		gap: 15px;
	}
}

@media (max-width: 480px) {
	.hero-title {
		font-size: 2rem;
	}

	.hero-subtitle {
		font-size: 1.1rem;
	}

	.cta-button {
		padding: 10px 25px;
		font-size: 0.9rem;
	}

	.service-content {
		padding: 1.5rem;
	}

	/* Removed unused .feature-card responsive rule */
}

/* Parallax Performance Optimization */
.parallax-bg {
	will-change: transform;
}

/* Disable parallax on mobile for better performance */
@media (max-width: 768px) {
	.parallax-bg {
		transform: none !important;
	}

	.hero .parallax-bg {
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}

	/* Removed unused .service-image .parallax-bg rule */
}

/* Smooth scrolling for older browsers */
@media (prefers-reduced-motion: no-preference) {
	html {
		scroll-behavior: smooth;
	}
}

/* Mobile Hamburger Menu - Universal */
.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
	padding: 0.5rem;
}

.bar {
	width: 25px;
	height: 3px;
	background-color: #ffffff;
	margin: 3px 0;
	transition: 0.3s;
	border-radius: 2px;
}

.hamburger.active .bar:nth-child(2) {
	opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Navigation Overlay */
@media (max-width: 768px) {
	.hamburger {
		display: flex;
	}

	.nav-menu {
		position: fixed;
		left: -100%;
		top: 70px;
		flex-direction: column;
		background-color: rgba(26, 26, 26, 0.98);
		width: 100%;
		text-align: center;
		transition: 0.3s;
		box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
		backdrop-filter: blur(10px);
		border-top: 1px solid #333;
		padding: 2rem 0;
		gap: 1.5rem;
	}

	.nav-menu.active {
		left: 0;
	}

	.nav-menu .nav-link {
		margin: 0;
		font-size: 1.1rem;
		padding: 0.5rem 0;
	}

	.nav-menu .cta-button {
		margin: 0.5rem auto;
		display: inline-block;
		width: fit-content;
	}
}

/* Footer Responsive Layout */
@media (max-width: 768px) {
	.footer-content {
		flex-direction: column;
		gap: 2rem;
	}

	.footer-brand {
		align-items: center;
		text-align: center;
	}

	.footer-info {
		text-align: center;
	}
}

/* High contrast mode support */
@media (prefers-contrast: high) {
	.cta-button.primary {
		background: #000;
		color: #fff;
	}

	.cta-button.secondary {
		border-color: #000;
		color: #000;
	}
}
