:root {
	/* Light Theme Palette */
	--primary-color: #f97316;
	/* Orange */
	--primary-hover: #ea580c;
	--secondary-color: #0f172a;
	/* Dark Blue for text/headings */

	--bg-body: #ffffff;
	--bg-light: #f8fafc;
	--bg-card: #ffffff;

	--text-main: #0f172a;
	--text-muted: #64748b;
	--text-light: #f8fafc;

	--border-color: #e2e8f0;
	--shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);

	--font-main: 'Outfit', sans-serif;
	--container-width: 1200px;
	--header-height: 80px;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: var(--font-main);
	background-color: var(--bg-body);
	color: var(--text-main);
	line-height: 1.6;
	overflow-x: hidden;
}

a {
	text-decoration: none;
	color: inherit;
	transition: color 0.3s ease;
}

ul {
	list-style: none;
}

img {
	max-width: 100%;
	display: block;
}

.container {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 20px;
}

/* Animations */
.reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease-out;
}

.reveal.active {
	opacity: 1;
	transform: translateY(0);
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 12px 28px;
	border-radius: 12px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	text-align: center;
	box-shadow: var(--shadow-sm);
}

.btn-primary {
	background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
	color: white;
	border: none;
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}

.btn-outline {
	background-color: transparent;
	border: 2px solid var(--secondary-color);
	color: var(--secondary-color);
}

.btn-outline:hover {
	background-color: var(--secondary-color);
	color: white;
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

/* Header & Glassmorphism */
.header {
	height: var(--header-height);
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	box-shadow: var(--shadow-sm);
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
}

.logo-img {
	height: 50px;
	border-radius: 8px;
}

.nav-list {
	display: flex;
	gap: 32px;
	align-items: center;
}

.nav-list a {
	font-weight: 500;
	font-size: 1.05rem;
	color: var(--secondary-color);
	position: relative;
}

.nav-list a::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -4px;
	left: 0;
	background-color: var(--primary-color);
	transition: width 0.3s ease;
}

.nav-list a:hover::after {
	width: 100%;
}

.nav-list a:hover {
	color: var(--primary-color);
}

.nav .btn {
	margin-left: 20px;
}

.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	z-index: 1001;
}

.mobile-menu-btn span {
	display: block;
	width: 25px;
	height: 3px;
	background-color: var(--secondary-color);
	margin: 5px 0;
	transition: 0.3s;
	border-radius: 3px;
}

/* Hero Section (Premium) */
.hero {
	padding-top: calc(var(--header-height) + 80px);
	padding-bottom: 100px;
	min-height: 90vh;
	display: flex;
	align-items: center;
	background:
		radial-gradient(circle at 10% 20%, rgba(249, 115, 22, 0.05) 0%, transparent 40%),
		radial-gradient(circle at 90% 80%, rgba(15, 23, 42, 0.05) 0%, transparent 40%),
		linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
	overflow: hidden;
	position: relative;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230f172a' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	opacity: 0.5;
	z-index: 0;
}

.hero-container {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 80px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.hero-content h1 {
	font-size: 4rem;
	line-height: 1.1;
	margin-bottom: 24px;
	color: var(--secondary-color);
	font-weight: 800;
	letter-spacing: -1.5px;
}

.hero-content h1 span {
	background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-subtitle {
	font-size: 1.35rem;
	color: var(--text-muted);
	margin-bottom: 40px;
	max-width: 600px;
	font-weight: 400;
}

.hero-trust-badges {
	display: flex;
	gap: 20px;
	margin-bottom: 40px;
	flex-wrap: wrap;
}

.trust-badge {
	display: flex;
	align-items: center;
	gap: 8px;
	background: white;
	padding: 8px 16px;
	border-radius: 50px;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--border-color);
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--secondary-color);
}

.trust-badge svg {
	width: 18px;
	height: 18px;
	color: #16a34a;
	/* Green check */
}

.hero-actions {
	display: flex;
	gap: 16px;
	margin-bottom: 0;
}

.availability {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.95rem;
	color: #16a34a;
	/* Green */
	font-weight: 600;
	background: rgba(22, 163, 74, 0.1);
	padding: 8px 16px;
	border-radius: 20px;
	width: fit-content;
}

.status-dot {
	width: 8px;
	height: 8px;
	background-color: #16a34a;
	border-radius: 50%;
	box-shadow: 0 0 0 2px rgba(22, 163, 74, 0.2);
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.4);
	}

	70% {
		box-shadow: 0 0 0 6px rgba(22, 163, 74, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(22, 163, 74, 0);
	}
}

.hero-image {
	position: relative;
}

.hero-image::before {
	content: '';
	position: absolute;
	top: -30px;
	right: -30px;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
	border-radius: 30px;
	opacity: 0.15;
	z-index: -1;
	transform: rotate(6deg);
}

.hero-image img {
	border-radius: 24px;
	box-shadow: var(--shadow-lg);
	border: 8px solid white;
}

/* Services Section */
.services {
	padding: 120px 0;
	background-color: var(--bg-light);
}

.section-header {
	text-align: center;
	margin-bottom: 80px;
}

.section-title {
	font-size: 2.5rem;
	margin-bottom: 16px;
	color: var(--secondary-color);
	font-weight: 700;
}

.section-subtitle {
	color: var(--text-muted);
	font-size: 1.1rem;
	max-width: 600px;
	margin: 0 auto;
}

.services-category {
	margin-bottom: 80px;
}

.services-category:last-child {
	margin-bottom: 0;
}

.category-title {
	font-size: 1.8rem;
	color: var(--secondary-color);
	margin-bottom: 40px;
	display: flex;
	align-items: center;
	gap: 16px;
	padding-bottom: 16px;
	border-bottom: 2px solid var(--border-color);
}

.category-title span {
	background: var(--primary-color);
	color: white;
	padding: 4px 12px;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 32px;
}

.service-card {
	background-color: var(--bg-card);
	padding: 40px;
	border-radius: 20px;
	border: 1px solid var(--border-color);
	transition: all 0.3s ease;
	box-shadow: var(--shadow-sm);
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: var(--primary-color);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}

.service-card:hover::before {
	transform: scaleX(1);
}

.service-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-lg);
	border-color: var(--primary-color);
}

.service-card .icon {
	font-size: 2.5rem;
	margin-bottom: 24px;
	color: var(--primary-color);
	background: rgba(249, 115, 22, 0.1);
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 16px;
}

.service-card:hover .icon {
	transform: rotate(5deg) scale(1.1);
}

.service-card h3 {
	font-size: 1.4rem;
	margin-bottom: 12px;
	color: var(--secondary-color);
}

.service-card p {
	color: var(--text-muted);
	font-size: 1rem;
	margin-bottom: 24px;
	flex-grow: 1;
}

.service-price {
	margin-top: auto;
	padding-top: 20px;
	border-top: 1px solid var(--border-color);
	font-weight: 700;
	color: var(--secondary-color);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.service-price span {
	font-size: 0.9rem;
	color: var(--text-muted);
	font-weight: 400;
}

/* About Section */
.about {
	padding: 120px 0;
	background-color: var(--bg-body);
}

.about-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.about-image img {
	border-radius: 24px;
	box-shadow: var(--shadow-lg);
}

.about-content .section-title {
	text-align: left;
	margin-bottom: 24px;
}

.about-text {
	color: var(--text-muted);
	font-size: 1.1rem;
	margin-bottom: 32px;
}

.benefits-list {
	display: grid;
	gap: 20px;
}

.benefits-list li {
	font-size: 1.1rem;
	display: flex;
	align-items: flex-start;
	gap: 16px;
	color: var(--text-main);
	background: transparent;
	padding: 0;
	border: none;
}

.check-icon {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	background-color: #16a34a;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 14px;
}

.benefit-content strong {
	display: block;
	color: var(--secondary-color);
	margin-bottom: 4px;
}

.benefit-content span {
	color: var(--text-muted);
	font-size: 0.95rem;
}

/* Contact Section */
.contact {
	padding: 100px 0;
	background-color: var(--bg-light);
}

.contact-container {
	text-align: center;
	max-width: 900px;
	margin: 0 auto;
}

.contact-info {
	background: white;
	padding: 60px;
	border-radius: 32px;
	border: 1px solid var(--border-color);
	box-shadow: var(--shadow-lg);
}

.contact-item {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-bottom: 24px;
	font-size: 1.25rem;
	color: var(--secondary-color);
}

.contact-link {
	color: var(--primary-color);
	font-weight: 700;
	font-size: 2.5rem;
	transition: color 0.3s;
	letter-spacing: -1px;
}

.contact-link:hover {
	color: var(--primary-hover);
	text-decoration: none;
}

.map-preview {
	margin-top: 40px;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: var(--shadow-md);
	border: 4px solid white;
}

/* Footer */
.footer {
	padding: 80px 0 40px;
	background-color: var(--secondary-color);
	color: #94a3b8;
	border-top: none;
}

.footer-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 60px;
	margin-bottom: 60px;
}

.footer-col h4 {
	color: white;
	font-size: 1.2rem;
	margin-bottom: 24px;
	font-weight: 600;
}

.footer-col ul li {
	margin-bottom: 12px;
}

.footer-col ul li a {
	transition: color 0.3s;
}

.footer-col ul li a:hover {
	color: var(--primary-color);
}

.footer-bottom {
	text-align: center;
	padding-top: 40px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
	.header-container {
		padding: 0 20px;
	}

	.nav {
		position: fixed;
		top: var(--header-height);
		left: 0;
		width: 100%;
		background-color: rgba(255, 255, 255, 0.98);
		padding: 40px 20px;
		flex-direction: column;
		border-bottom: 1px solid var(--border-color);
		transform: translateY(-150%);
		transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
		box-shadow: var(--shadow-lg);
	}

	.nav.active {
		transform: translateY(0);
	}

	.nav-list {
		flex-direction: column;
		width: 100%;
		text-align: center;
		gap: 24px;
	}

	.nav-list a {
		font-size: 1.2rem;
	}

	.nav .btn {
		margin: 32px 0 0 0;
		width: 100%;
	}

	.mobile-menu-btn {
		display: block;
	}

	/* Mobile Hero with Background Image */
	.hero {
		background: url('../images/hero-laptop.png') no-repeat center top/contain;
		background-color: var(--secondary-color);
		position: relative;
		z-index: 1;
		color: white;
		/* Force white text on mobile hero */
		text-align: center;
		min-height: auto;
		/* Remove fixed height constraint */
		padding-top: 100px;
		/* Adjust padding */
		padding-bottom: 60px;
	}

	.hero::before {
		/* Heavy overlay for readability */
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(15, 23, 42, 0.85);
		/* Dark blue overlay */
		backdrop-filter: blur(2px);
		z-index: -1;
	}

	.hero-container {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 0;
	}

	.hero-image {
		display: none;
		/* Hide the standalone image on mobile */
	}

	.hero-content h1 {
		font-size: 2.5rem;
		color: white;
		/* Override dark color */
	}

	.hero-content h1 span {
		/* Keep gradient or make it solid orange for better contrast? Let's keep gradient but lighter */
		background: linear-gradient(135deg, #fb923c, #fdba74);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		background-clip: text;
	}

	.hero-subtitle {
		color: #cbd5e1;
		/* Light gray for subtitle */
		margin: 0 auto 32px;
	}

	.hero-trust-badges {
		justify-content: center;
	}

	.trust-badge {
		background: rgba(255, 255, 255, 0.1);
		border-color: rgba(255, 255, 255, 0.2);
		color: white;
		backdrop-filter: blur(5px);
	}

	.hero-actions {
		justify-content: center;
		flex-direction: column;
	}

	.availability {
		margin: 20px auto 0;
		background: rgba(22, 163, 74, 0.2);
		color: #4ade80;
	}

	/* Mobile About with Background Image */
	.about {
		background: url('../images/tools.jpg') no-repeat center top/contain;
		background-color: var(--secondary-color);
		position: relative;
		z-index: 1;
		color: white;
		padding: 60px 0;
	}

	/* Reduced global overlay to make image more visible */
	.about::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(15, 23, 42, 0.4);
		/* Much lighter overlay */
		backdrop-filter: blur(0px);
		/* Removed blur from whole section */
		z-index: -1;
	}

	.about-container {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.about-image {
		display: none;
	}

	/* REVERTED: No Glassmorphism Card. Text directly on background with shadow. */
	.about-content {
		margin-top: 180px;
		/* Push content down to reveal image at top */
		padding: 0 10px;
	}

	.about-content .section-title {
		color: white;
		text-align: center;
		text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
	}

	.about-text {
		color: #e2e8f0;
		text-align: center;
		text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
	}

	.benefits-list li {
		background: rgba(255, 255, 255, 0.08);
		border-color: rgba(255, 255, 255, 0.15);
		color: white;
		text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
	}

	.benefit-content strong {
		color: white;
	}

	.benefit-content span {
		color: #cbd5e1;
	}

	.contact-info {
		padding: 40px 20px;
	}

	.contact-link {
		font-size: 1.8rem;
	}

	/* New style for the contact button on mobile */
	.contact-item .btn {
		font-size: 1.2rem;
		padding: 16px 40px;
		width: 100%;
		max-width: 300px;
	}
}

/* =========================================
   Modals
   ========================================= */
.modal {
	display: none;
	/* Hidden by default */
	position: fixed;
	z-index: 2000;
	/* On top of everything */
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(15, 23, 42, 0.8);
	/* Dark overlay with transparency */
	backdrop-filter: blur(5px);
	align-items: center;
	justify-content: center;
}

.modal-content {
	background-color: #1e293b;
	/* Dark background matching theme */
	margin: 10% auto;
	padding: 30px;
	border: 1px solid #334155;
	width: 90%;
	max-width: 600px;
	border-radius: 12px;
	position: relative;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
	animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.close-btn {
	color: #94a3b8;
	float: right;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
	transition: color 0.3s;
	line-height: 1;
}

.close-btn:hover,
.close-btn:focus {
	color: #fca311;
	/* Accent color */
	text-decoration: none;
}

.modal h2 {
	color: #fca311;
	margin-bottom: 20px;
	font-size: 1.5rem;
	border-bottom: 1px solid #334155;
	padding-bottom: 10px;
}

.modal-body {
	color: #cbd5e1;
	font-size: 0.85rem;
	line-height: 1.6;
	max-height: 60vh;
	overflow-y: auto;
	padding-right: 10px;
	/* Space for scrollbar */
}

.modal-body h3 {
	color: #fff;
	font-size: 1rem;
	margin-top: 20px;
	margin-bottom: 10px;
}

.modal-body p,
.modal-body ul {
	margin-bottom: 15px;
}

.modal-body ul {
	padding-left: 20px;
	list-style-type: disc;
}

/* Scrollbar for modal body */
.modal-body::-webkit-scrollbar {
	width: 6px;
}

.modal-body::-webkit-scrollbar-track {
	background: #1e293b;
}

.modal-body::-webkit-scrollbar-thumb {
	background-color: #475569;
	border-radius: 3px;
}