:root {
	--main-color: #3366ff;
}
.hero {
	position: relative;
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
	color: white;
	text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
	aspect-ratio: 16 / 9;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.hero-badge {
	margin-top: 1rem;
	max-width: 500px;
	width: 100%;
	height: auto;
}
.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.4);
	z-index: 1;
}
.hero > .container {
	position: relative;
	z-index: 2;
}
@media (max-width: 576px) {
	.hero h1 {
		font-size: 1.75rem;
		line-height: 1.2;
	}
	.hero .lead {
		font-size: 1rem;
	}
	.hero .btn-lg {
		font-size: 1rem;
		padding: 0.6rem 1rem;
		white-space: normal;
	}
	.hero-badge {
		max-width: 300px;
	}
}
.sticky-contact-bar {
	width: 100%;
	background: var(--main-color);
	color: white;
	text-align: center;
	padding: 0.75rem;
	font-size: 1.2rem;
	font-weight: 600;
	z-index: 1050;
}
.service-card {
	background-color: var(--main-color);
	color: white;
	height: 100%;
	display: flex;
	flex-direction: column;
	border-radius: 0;
	background-size: cover;
	background-position: center;
}
.service-card img {
	height: 250px;
	object-fit: cover;
	width: 100%;
	border-radius: 0;
}
.service-card .card-body {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.testimonial-slot {
	transition: opacity 0.5s ease-in-out;
}
.testimonial-slot.fade-out {
	opacity: 0;
}
.testimonial-slot.fade-in {
	opacity: 0;
	animation: fadeIn 0.5s forwards;
}
@keyframes fadeIn {
	to { opacity: 1; }
}
.testimonial {
	background: #f9f9f9;
	padding: 40px;
	border-left: 5px solid var(--main-color);
	height: 100%;
}
.emergency-banner {
	background: #dc3545;
	color: white;
	text-align: center;
	padding: 30px;
	font-size: 1.4rem;
}
.footer {
	background: var(--main-color);
	color: white;
	padding: 20px 0;
}