@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap");

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

body {
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	line-height: 1.6;
	color: #2c2c2c;
	background: #ffffff;
}

.site-wrapper {
	max-width: 100%;
	margin: 0 auto;
	padding: 0;
}

/* Header & Hero */
.hero {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 4rem 2rem 3rem;
	background: radial-gradient(ellipse at center,#cad2fc 0%, rgba(255, 255, 255, 0.8) 85%),
	            linear-gradient(135deg, #ffffff 0%, #e8f0f7 50%, #f0f4f8 100%);
	border-bottom: 1px solid #d0dde8;
	min-height: 65vh;
	position: relative;
}

.hero img {
	max-width: 600px;
	width: 100%;
	height: auto;
	margin-bottom: 2rem;
}

.hero h1 {
	font-size: 2rem;
	font-weight: 600;
	color: #1a1a1a;
	margin-bottom: 0.5rem;
	letter-spacing: -0.5px;
}

.subtitle {
	font-size: 1.3rem;
	color: #666;
	margin-bottom: 1.5rem;
}

/* Contact Header */
.contact-header {
	flex-direction: column;
	display: flex;
	gap: 1.5rem;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
}

.contact-header p {
	margin: 0;
}

.phone-cta {
	font-size: 1.8rem;
	font-weight: 700;
	color: #ffffff;
	background: #c41e3a;
	text-decoration: none;
	padding: 1.25rem 3rem;
	border: 2px solid #c41e3a;
	border-radius: 6px;
	transition: all 0.2s ease;
	box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
}

.phone-cta:hover {
	background: #a01629;
	border-color: #a01629;
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(196, 30, 58, 0.4);
}

.email-cta {
	font-size: 1.1rem;
	color: #666;
	text-decoration: none;
	transition: color 0.2s ease;
}

.email-cta:hover {
	color: #1a5490;
}

/* Main Content */
.main-content {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin-top: 0;
	margin-bottom: 0;
}

section {
	padding: 3rem 2rem;
	background: #ffffff;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	min-height: 35vh;
	justify-content: center;
}

.service-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 4rem;
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
}

.service-item {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.service-item h2 {
	font-size: 2rem;
	margin-bottom: 1.25rem;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.service-item p {
	font-size: 1.05rem;
	margin: 0;
	line-height: 1.7;
	font-weight: 400;
}

.service-item p:first-of-type {
	font-weight: 500;
	margin-bottom: 0.75rem;
}

.service-item p:last-of-type {
	color: #666;
	font-size: 1rem;
}

.service-tagline {
	margin-top: 3rem;
	font-size: 1.25rem;
	font-weight: 500;
}

h2 {
	font-size: 1.75rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 1rem;
	color: #1e5bb8;
	letter-spacing: -0.5px;
	text-transform: uppercase;
}

h3 {
	font-size: 1.4rem;
	font-weight: 600;
	margin-top: 1.5rem;
	margin-bottom: 0.75rem;
	color: #2c2c2c;
}

p {
	font-size: 1.15rem;
	text-align: center;
	color: #4a4a4a;
	line-height: 1.8;
	max-width: 800px;
}

strong {
	font-weight: 700;
	color: #1e5bb8;
}

.highlight-red {
	color: #c41e3a;
	font-weight: 600;
}

ul {
	list-style: none;
	padding: 0;
}

li {
	padding: 0.5rem 0;
	color: #4a4a4a;
	font-size: 1.1rem;
}

.equipment-list,
.customer-types {
	display: flex;
	gap: 2rem;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 1rem;
}

.equipment-column ul,
.customer-column ul {
	text-align: left;
}

.contact-info a {
	color: #1e5bb8;
	text-decoration: none;
	font-weight: 500;
}

.contact-info a:hover {
	text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
	.hero {
		padding: 1.5rem 1.5rem 2rem;
	}

	section {
		padding: 2rem 1.5rem;
	}

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

	.hero img {
		max-width: 350px;
	}

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

	.subtitle {
		font-size: 1rem;
	}

	.contact-header {
		gap: 1rem;
		flex-direction: column;
	}

	.phone-cta {
		font-size: 1.3rem;
	}

	.email-cta {
		font-size: 1rem;
	}


	h2 {
		font-size: 1.3rem;
	}

	p {
		font-size: 0.95rem;
	}
}

@media (max-width: 480px) {
	.hero img {
		max-width: 100%;
	}

	.phone-cta {
		font-size: 1.2rem;
	}
}
