/* =========================
   GLOBAL
========================= */

body {
	font-family: "Mulish", sans-serif;
}

.container-fluid {
	color: #fff;
}

/* =========================
   CONTACT BAR
========================= */

.contact-info {
	background-color: #fff;
	padding: 10px 0;
	font-size: 1.0831rem;
	font-weight: 300;
	color: #000;
}

.contact-info a {
	color: #000;
	text-decoration: none;
	transition: color 0.2s ease;
}

.contact-info a:hover {
	color: #e32126;
}

.text-container {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 40px;
	flex-wrap: nowrap;
	width: 100%;
	padding: 0.5em 0;
}

@media (max-width: 768px) {
	.text-container {
		flex-direction: column;
		gap: 8px;
		text-align: center;
	}
}

/* =========================
   HEADER / NAV
========================= */

.site-nav {
	margin-top: 0;
	padding-top: 0;
	background-color: #000;
}

.header-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.header-logo-col {
	text-align: center;
	padding: 2em 0;
}

.header-logo {
	max-width: 400px;
	width: 100%;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.header-icons-col {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 1em 0;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.header-icons a {
	display: inline-block;
	margin: 0 8px;
	transition: transform 0.3s ease, filter 0.3s ease;
}

.header-icons a:hover {
	transform: scale(1.1);
	filter: brightness(1.2);
}

.header-icons img {
	max-width: 60px;
	width: 100%;
}

.header-logo.visible,
.header-icons-col.visible {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 768px) {
	.header-row {
		flex-direction: column;
	}

	.header-icons-col {
		margin-top: 1em;
	}
}

/* =========================
   COVER / HERO
========================= */

.cover {
	width: 100%;
	height: 800px;
	position: relative;
	background-image:
		linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.5)),
		url("../images/kY2ZqO37mfSIJM9SKoplr6vTfpw6Jyiq9a2LrMxx.jpeg");
	background-size: cover;
	background-position: center;
}

.cta-box {
	position: absolute;
	right: 60px;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(8px);
	padding: 40px;
	width: 360px;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.2);
	opacity: 0;
	animation: slideIn 1.2s ease-out forwards;
	animation-delay: 0.5s;
}

@keyframes slideIn {
	from {
		transform: translate(60px, -50%);
		opacity: 0;
	}

	to {
		transform: translate(0, -50%);
		opacity: 1;
	}
}

.cta-box h2 {
	font-size: 2.15rem;
	margin-bottom: 16px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.cta-box p {
	font-size: 1.05rem;
	line-height: 1.5;
	margin-bottom: 25px;
}

.cta-btn {
	display: block;
	width: 100%;
	background: #e32126;
	color: #fff;
	padding: 14px 0;
	text-align: center;
	text-decoration: none;
	transition: transform 0.25s ease, background 0.25s ease;
}

.cta-btn:hover {
	background: #ff3b33;
	transform: scale(1.03);
	color: #fff;
}

@media (max-width: 768px) {
	.cta-box {
		position: static;
		transform: none;
		width: calc(100% - 40px);
		margin: 20px auto 0;
		text-align: center;
		animation: slideInMobile 1s ease-out forwards;
	}

	@keyframes slideInMobile {
		from {
			transform: translateY(20px);
			opacity: 0;
		}

		to {
			transform: translateY(0);
			opacity: 1;
		}
	}
}

/* =========================
   BANNER IMAGES
========================= */

.banner-image {
	padding: 0;
	overflow: hidden;
}

.banner-image img {
	width: 100%;
	height: 380px;
	object-fit: cover;
	display: block;
}

@media (max-width: 768px) {
	.banner-image img {
		height: 220px;
	}
}

/* =========================
   STANDARD / ADMIN PAGES
========================= */

#standard-page {
	max-width: 900px;
	margin: 0 auto;
	padding: 1rem 0;
	text-align: left;
}

#standard-page h1 {
	font-size: 1.6rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin: 0 0 1.25rem;
}

#standard-page h2 {
	font-size: 1rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	color: #fff;
	margin: 2.25rem 0 0.5rem;
}

#standard-page h2::after {
	content: "";
	display: block;
	width: 28px;
	height: 2px;
	background: #e32126;
	margin: 0.75rem 0;
}

#standard-page h1::after {
	display: none;
}

#standard-page p,
#standard-page li {
	font-size: 0.95rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.85);
	margin: 0 0 0.75rem;
}

#standard-page ul {
	padding-left: 1.25rem;
	margin: 0.5rem 0 1rem;
}

#standard-page form {
	max-width: 100%;
}

#standard-page input[type="text"],
#standard-page input[type="email"],
#standard-page input[type="tel"],
#standard-page textarea {
	width: 100%;
	box-sizing: border-box;
}

.standard-form select {
	width: 100%;
	box-sizing: border-box;
}

@media (max-width: 768px) {

	/* Constrain reading width on mobile */
	#standard-page {
		max-width: 100%;
		padding: 0.5rem 0.75rem;
	}

	/* Reduce visual dominance of page title */
	#standard-page h1 {
		font-size: 1.35rem;
		margin-bottom: 1.25rem;
	}

	/* Section headings: tighter + clearer */
	#standard-page h2 {
		font-size: 0.95rem;
		margin-top: 2rem;
	}

	#standard-page h2::after {
		width: 22px;
		margin: 0.4rem 0 0.6rem;
	}

	/* Body text: easier to scan on small screens */
	#standard-page p,
	#standard-page li {
		font-size: 0.9rem;
		line-height: 1.55;
	}

	/* Lists: avoid bullet crowding */
	#standard-page ul {
		padding-left: 1.1rem;
	}

}

/* =========================
   MARKETING PAGES
========================= */

#marketing-page {
	text-align: left;
}

#marketing-page > * {
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

#marketing-page h1,
#marketing-page h2 {
	text-align: center;
}

#marketing-page h1 {
	font-size: 1.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 1.5rem;
}

#marketing-page h1::after {
	content: "";
	display: block;
	width: 40px;
	height: 2px;
	background: #e32126;
	margin: 2.25rem auto 0.75rem;
}

#marketing-page h2 {
	font-size: 1.25rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	margin: 2.25rem auto 1.25rem;
}

#marketing-page h2::after {
	display: none;
}

#marketing-page p {
	font-size: 1.05rem;
	line-height: 1.6;
	margin-bottom: 0.75rem;
	color: rgba(255, 255, 255, 0.85);
}

#marketing-page ul {
	list-style: none;
	padding-left: 0;
	margin: 0.75rem auto 1.25rem;
	text-align: left;
}

#marketing-page ul li {
	display: grid;
	grid-template-columns: 16px 1fr;
	column-gap: 0.75rem;
	font-size: 1.05rem;
	line-height: 1.6;
	margin-bottom: 0.6rem;
	color: rgba(255, 255, 255, 0.85);
}

#marketing-page ul li::before {
	content: "";
	width: 14px;
	height: 14px;
	margin-top: 0.3em;
	background-color: #e32126;
	mask: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 12'>\
<path fill='white' d='M6 12L0 6l2-2 4 4 8-8 2 2z'/>\
</svg>") no-repeat center / contain;
}

.step-list {
	counter-reset: step-counter;
	list-style: none;
	padding-left: 0;
}

.step-list li {
	position: relative;
	counter-increment: step-counter;
	padding-left: 40px;
	margin-bottom: 24px;
	font-size: 1.05rem;
	line-height: 1.6;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.85);
}

.step-list li::before {
	content: counter(step-counter);
	position: absolute;
	left: 0;
	top: 4px;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background-color: #e32126;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.step-list li::after {
	content: "";
	position: absolute;
	left: 12px;
	top: 32px;
	width: 2px;
	height: calc(100% - 32px);
	background-color: #333;
}

/* =========================
   CONTENT
========================= */

.content {
	padding: 4rem 1.5rem;
	text-align: center;
}

.content--light {
	background: #fff;
	color: #000;
}

.content--dark {
	background: #000;
	color: #fff;
}

.content h1,
.content h2,
.content p {
	color: inherit;
}

.content h1,
.content h2 {
	margin-top: 0;
	position: relative;
	text-transform: uppercase;
}

.content h1 {
	font-size: 2.5rem;
	letter-spacing: 3px;
	margin-bottom: 2rem;
}

.content h2 {
	font-size: 2rem;
	letter-spacing: 2px;
	margin-bottom: 2rem;
}

.content h1::after,
.content h2::after {
	content: "";
	display: block;
	width: 48px;
	height: 2px;
	background: #e32126;
	margin: 1rem auto 0;
}

.content p {
	font-size: 1.05rem;
	line-height: 1.8;
	max-width: 760px;
	margin: 0 auto 1.75rem;
}

.content p:last-child {
	margin-bottom: 0;
}

.content-lead {
	font-size: 1.15rem;
}

.content--dark p {
	color: rgba(255, 255, 255, 0.85);
}

.highlights-list-wrap {
	max-width: 720px;
	margin: 0 auto;
}

.highlights-list--ticks {
	list-style: none;
	padding-left: 0;
	margin: 0;
	text-align: left;
}

.highlights-list--ticks li {
	display: grid;
	grid-template-columns: 16px 1fr;
	column-gap: 0.75rem;
	margin-bottom: 1.15rem;
	line-height: 1.55;
}

.highlights-list--ticks li::before {
	content: "";
	width: 14px;
	height: 14px;
	margin-top: 0.25em;
	background-color: #e32126;
	mask: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 12'>\
<path fill='white' d='M6 12L0 6l2-2 4 4 8-8 2 2z'/>\
</svg>") no-repeat center / contain;
}

@media (max-width: 768px) {
	.content {
		padding: 3.5rem 1.25rem;
	}

	.content h1 {
		font-size: 2rem;
		letter-spacing: 2px;
	}

	.content h2 {
		font-size: 1.6rem;
		letter-spacing: 1.5px;
	}

	.content h1::after,
	.content h2::after {
		width: 36px;
		margin-top: 0.9rem;
	}

	.content p {
		font-size: 1rem;
		line-height: 1.7;
	}

	.content-lead {
		font-size: 1.05rem;
	}
}

/* =========================
   SERVICES
========================= */

.services .row {
	margin: 0;
}

.services [class*="col-"] {
	padding: 0;
}

.tile-image-wrapper {
	position: relative;
	width: 100%;
	padding-top: 100%;
	overflow: hidden;
}

@media (max-width: 576px) {
	.tile-image-wrapper {
		padding-top: 50%;
	}
}

.tile-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(85%) brightness(0.65);
	transition: transform 0.6s ease, filter 0.6s ease;
}

.service-tile:hover .tile-image {
	transform: scale(1.08);
	filter: grayscale(0%) brightness(1);
}

.tile-text {
	position: absolute;
	top: 2em;
	left: 2em;
	right: 1em;
}

.tile-title {
	font-size: 1.55rem;
	font-weight: 600;
	color: #fff;
	letter-spacing: 3px;
	text-transform: uppercase;
	margin-bottom: 0.5em;
}

.tile-desc {
	font-size: 1rem;
	color: #fff;
	opacity: 0;
	transform: translateY(6px);
	transition: opacity 0.4s ease, transform 0.4s ease;
}

.service-tile:hover .tile-desc {
	opacity: 1;
	transform: translateY(0);
}

/* =========================
   FEATURE ROW
========================= */

.feature-row {
	height: 600px;
	overflow: hidden;
}

.feature-row-flex {
	display: flex;
	height: 100%;
}

.feature-tile {
	flex: 1;
	overflow: hidden;
	border-right: 2px solid #000;
}

.feature-row-flex .feature-tile:last-child {
	border-right: none;
}

.feature-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(85%) brightness(0.65);
	transition: transform 0.6s ease, filter 0.6s ease;
}

.feature-tile:hover .feature-image {
	transform: scale(1.12);
	filter: grayscale(0%) brightness(1);
}

@media (max-width: 768px) {
	.feature-row {
		height: 400px;
	}
}

@media (max-width: 576px) {
	.feature-row {
		height: 300px;
	}
}

/* =========================
   GOOGLE REVIEWS
========================= */

#google-reviews {
	background: #000;
	color: #fff;
	text-align: center;
	padding: 0 0 40px;
	position: relative;
}

.reviews-wrapper {
	max-width: 800px;
	margin: 0 auto;
	height: 125px;
	position: relative;
}

.review {
	position: absolute;
	width: 100%;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.review.active {
	opacity: 1;
	transform: translateY(0);
}

.review-text {
	font-size: 1.4rem;
	margin-bottom: 0.75rem;
}

.reviewer-name {
	color: #ff3b3b;
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.review-dots {
	margin-top: 16px;
}

.review-dots .dot {
	width: 7px;
	height: 7px;
	margin: 0 3px;
	background-color: #fff;
	border-radius: 50%;
	display: inline-block;
	cursor: pointer;
	opacity: 0.35;
}

.review-dots .dot.active {
	opacity: 1;
	transform: scale(1.15);
}

/* =========================
   FOOTER
========================= */

.footer-logos {
	background-color: #fff;
}

#bottomlogos {
	text-align: center;
}

#bottomlogos img {
	margin: 25px 30px;
	width: 100px;
	vertical-align: middle;
}

.site-footer-main {
	background: #000;
	color: #eee;
	padding: 3rem 0 4.5rem;
}

.site-footer-main h3 {
	color: #e32126;
	font-weight: 300;
}

.site-footer-main a {
	color: #eee;
}

.site-footer-main a:hover {
	color: #e32126;
}

.footer-logo {
	width: 300px;
	max-width: 80%;
	opacity: 0;
	transition: opacity 1s ease;
}

.footer-logo.visible {
	opacity: 1;
}

.footer-social {
	display: flex;
	gap: 20px;
	margin-top: 20px;
}

.footer-social img {
	width: 34px;
	transition: transform 0.3s ease;
}

.footer-social img:hover {
	transform: scale(1.15);
}

.footer-nav {
	margin-bottom: 15px;
}

.footer-nav-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px 24px;
}

.footer-nav-list a {
	color: #eee;
	text-decoration: none;
	font-size: 14px;
}

.footer-nav-list a:hover {
	color: #e32126;
	text-decoration: underline;
}

#site-footer {
	color: #fff;
	background: #000;
	text-align: center;
	padding: 20px 10px 40px;
	border-top: 1px solid #e32126;
}

#site-footer p {
	margin: 5px 0;
	font-size: 14px;
}
