/* ==========================================================
   SE CLEANERS — LOCATION PAGE V2
   ==========================================================

   IMPORTANT:
   This stylesheet DOES NOT require a parent .sec-loc-v2
   wrapper.

   Every major Gutenberg section remains an independent
   top-level block.

   Global site typography, colors and general Gutenberg
   styling are inherited from custom-css-style-sheet.css.

   ========================================================== */


/* ==========================================================
   01. SHARED LOCATION PAGE ELEMENTS
   ========================================================== */

.sec-loc-v2__container {
	width: calc(100% - 60px);
	max-width: 1200px !important;
	margin-left: auto !important;
	margin-right: auto !important;
}

.sec-loc-v2__section {
	width: 100%;
	max-width: none !important;
	margin: 0 !important;
	padding: 105px 0;
	box-sizing: border-box;
}

.sec-loc-v2__section *,
.sec-loc-v2__hero *,
.sec-loc-v2__area *,
.sec-loc-v2__review *,
.sec-loc-v2__cta * {
	box-sizing: border-box;
}

.sec-loc-v2__eyebrow {
	margin: 0 0 12px !important;
	color: #008acb !important;
	font-size: 12px !important;
	font-weight: 800 !important;
	letter-spacing: .14em !important;
	line-height: 1.4 !important;
	text-transform: uppercase;
}

.sec-loc-v2__eyebrow--light {
	color: #c8ecfb !important;
}

.sec-loc-v2__heading {
	margin: 0 0 22px !important;
	color: #062f5e !important;
	font-size: clamp(34px, 4vw, 50px) !important;
	font-weight: 700 !important;
	line-height: 1.08 !important;
}

.sec-loc-v2__lead {
	margin-top: 0 !important;
	color: #2f465c !important;
	font-size: 18px !important;
	font-weight: 500;
	line-height: 1.65 !important;
}


/* ==========================================================
   02. BUTTONS
   ========================================================== */

.sec-loc-v2__button .wp-block-button__link {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 13px 25px !important;
	border-radius: 4px !important;
	font-size: 14px !important;
	font-weight: 750 !important;
	line-height: 1.2 !important;
	text-decoration: none !important;
	transition:
		transform .2s ease,
		background-color .2s ease,
		border-color .2s ease,
		box-shadow .2s ease;
}

.sec-loc-v2__button .wp-block-button__link:hover {
	transform: translateY(-2px);
}

.sec-loc-v2__button--primary .wp-block-button__link {
	border: 2px solid #008acb !important;
	background: #008acb !important;
	color: #ffffff !important;
	box-shadow: 0 7px 18px rgba(0, 138, 203, .20);
}

.sec-loc-v2__button--primary .wp-block-button__link:hover {
	border-color: #0072aa !important;
	background: #0072aa !important;
	color: #ffffff !important;
}

.sec-loc-v2__button--outline .wp-block-button__link {
	border: 2px solid rgba(255, 255, 255, .92) !important;
	background: transparent !important;
	color: #ffffff !important;
}

.sec-loc-v2__button--outline .wp-block-button__link:hover {
	background: #ffffff !important;
	color: #062f5e !important;
}


/* ==========================================================
   03. HERO
   ========================================================== */

.sec-loc-v2__hero {
	position: relative;
	width: 100%;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	background-color: #173e64;
	overflow: hidden;
}

.sec-loc-v2__hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(
			90deg,
			rgba(3, 30, 58, .94) 0%,
			rgba(3, 30, 58, .86) 34%,
			rgba(3, 30, 58, .48) 63%,
			rgba(3, 30, 58, .15) 100%
		);
	pointer-events: none;
}

.sec-loc-v2__hero .wp-block-cover__inner-container {
	position: relative;
	z-index: 2;
	width: 100%;
}

.sec-loc-v2__hero-inner {
	display: flex;
	align-items: center;
	min-height: 590px;
}

.sec-loc-v2__hero-content {
	width: 100%;
	max-width: 750px !important;
	margin: 0 !important;
}

.sec-loc-v2__hero-title {
	max-width: 760px;
	margin: 0 0 22px !important;
	color: #ffffff !important;
	font-size: clamp(44px, 5.5vw, 68px) !important;
	font-weight: 750 !important;
	letter-spacing: -.025em;
	line-height: 1.04 !important;
}

.sec-loc-v2__hero-text {
	max-width: 640px;
	margin: 0 0 30px !important;
	color: rgba(255, 255, 255, .94) !important;
	font-size: 18px !important;
	line-height: 1.65 !important;
}

.sec-loc-v2__hero-buttons {
	gap: 12px;
}


/* ==========================================================
   04. LOCAL INTRO
   ========================================================== */

.sec-loc-v2__intro {
	background: #ffffff !important;
}

.sec-loc-v2__intro-columns {
	align-items: center !important;
	gap: clamp(45px, 6vw, 85px) !important;
	margin: 0 !important;
}

.sec-loc-v2__intro-image {
	min-height: 470px !important;
	border-radius: 5px !important;
	background: #e1e8ec;
	overflow: hidden;
}

.sec-loc-v2__intro-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sec-loc-v2__intro-content {
	max-width: 550px !important;
	margin: 0 !important;
}

.sec-loc-v2__intro-content > p:not(.sec-loc-v2__eyebrow):not(.sec-loc-v2__lead) {
	margin-top: 0;
	margin-bottom: 26px;
	font-size: 16px;
	line-height: 1.72;
}

.sec-loc-v2__intro-buttons {
	margin-top: 28px;
}


/* ==========================================================
   05. FEATURED SERVICES
   ========================================================== */

.sec-loc-v2__services {
	background: #f7f9fa !important;
}

.sec-loc-v2__section-header {
	max-width: 760px !important;
	margin: 0 auto 52px !important;
}

.sec-loc-v2__section-intro {
	max-width: 650px;
	margin: 0 auto !important;
	color: #607080 !important;
	font-size: 16px !important;
	line-height: 1.7 !important;
}

.sec-loc-v2__service-grid {
	align-items: stretch !important;
	gap: 26px !important;
	margin: 0 !important;
}

.sec-loc-v2__service-card {
	display: flex !important;
	flex-direction: column;
	overflow: hidden !important;
	border: 1px solid #dce5ea !important;
	border-radius: 6px !important;
	background: #ffffff !important;
	box-shadow: 0 12px 35px rgba(4, 47, 94, .08) !important;
	transition:
		transform .25s ease,
		box-shadow .25s ease;
}

.sec-loc-v2__service-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 48px rgba(4, 47, 94, .14) !important;
}

.sec-loc-v2__service-image {
	min-height: 275px !important;
	margin: 0 !important;
	border-radius: 0 !important;
	background: #dfe6ea;
	overflow: hidden;
}

.sec-loc-v2__service-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .55s ease;
}

.sec-loc-v2__service-card:hover .sec-loc-v2__service-image img {
	transform: scale(1.035);
}

.sec-loc-v2__service-content {
	display: flex !important;
	flex: 1;
	flex-direction: column;
	width: 100%;
	padding: 28px 28px 30px !important;
}

.sec-loc-v2__service-title {
	margin: 0 0 12px !important;
	color: #062f5e !important;
	font-size: 24px !important;
	line-height: 1.2 !important;
}

.sec-loc-v2__service-content > p:not(.sec-loc-v2__text-link) {
	margin: 0 0 20px !important;
	color: #536577 !important;
	font-size: 15px !important;
	line-height: 1.7 !important;
}

.sec-loc-v2__text-link {
	margin-top: auto !important;
	margin-bottom: 0 !important;
	font-size: 14px !important;
	font-weight: 750 !important;
}

.sec-loc-v2__text-link a {
	color: #008acb !important;
	text-decoration: none !important;
}

.sec-loc-v2__text-link a:hover {
	color: #0072aa !important;
	text-decoration: underline !important;
}


/* ==========================================================
   06. WHY CHOOSE SE CLEANERS
   ========================================================== */

.sec-loc-v2__why {
	background:
		linear-gradient(
			135deg,
			#e9f5fa 0%,
			#f4f9fb 100%
		) !important;
}

.sec-loc-v2__why-columns {
	align-items: center !important;
	gap: clamp(55px, 7vw, 100px) !important;
	margin: 0 !important;
}

.sec-loc-v2__why-intro > p:not(.sec-loc-v2__eyebrow):not(.sec-loc-v2__lead) {
	font-size: 16px;
	line-height: 1.72;
}

.sec-loc-v2__benefits {
	display: flex !important;
	flex-direction: column !important;
}

.sec-loc-v2__benefit {
	display: flex !important;
	align-items: flex-start !important;
	gap: 23px !important;
	width: 100%;
	margin: 0 !important;
	padding: 28px 0 !important;
	border-bottom: 1px solid #c7dce5;
}

.sec-loc-v2__benefit:first-child {
	padding-top: 0 !important;
}

.sec-loc-v2__benefit:last-child {
	padding-bottom: 0 !important;
	border-bottom: 0;
}

.sec-loc-v2__benefit-icon {
	display: flex;
	flex: 0 0 62px;
	align-items: center;
	justify-content: center;
	width: 62px;
	height: 62px;
	border-radius: 50%;
	background: #ffffff;
	box-shadow: 0 8px 20px rgba(4, 47, 94, .08);
}

.sec-loc-v2__benefit-icon svg {
	width: 34px;
	height: 34px;
	fill: none;
	stroke: #008acb;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.sec-loc-v2__benefit-copy {
	flex: 1;
	margin: 0 !important;
}

.sec-loc-v2__benefit-copy h3 {
	margin: 2px 0 6px !important;
	color: #062f5e !important;
	font-size: 20px !important;
	font-weight: 750 !important;
	line-height: 1.25 !important;
}

.sec-loc-v2__benefit-copy p {
	margin: 0 !important;
	color: #536577 !important;
	font-size: 14px !important;
	line-height: 1.65 !important;
}


/* ==========================================================
   07. SERVICE AREA
   ========================================================== */

.sec-loc-v2__area {
	width: 100%;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	background: #ffffff !important;
}

.sec-loc-v2__area-container {
	width: 100% !important;
	max-width: 1380px !important;
	margin-left: auto !important;
	margin-right: auto !important;
}

.sec-loc-v2__area-columns {
	gap: 0 !important;
	margin: 0 !important;
}

.sec-loc-v2__area-image-column {
	display: flex;
}

.sec-loc-v2__area-image {
	width: 100%;
	min-height: 430px !important;
	margin: 0 !important;
	border-radius: 0 !important;
	background: #dce5e9;
}

.sec-loc-v2__area-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sec-loc-v2__area-copy-column {
	display: flex;
	align-items: center;
	background: #ffffff;
}

.sec-loc-v2__area-content {
	width: 100%;
	max-width: 580px !important;
	margin: 0 !important;
	padding: 65px !important;
}

.sec-loc-v2__nearby {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 9px !important;
	margin: 27px 0 !important;
}

.sec-loc-v2__nearby p {
	margin: 0 !important;
	padding: 7px 12px !important;
	border: 1px solid #d5e3e9;
	border-radius: 999px;
	background: #f7fafb;
	color: #062f5e !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	line-height: 1.2 !important;
}


/* ==========================================================
   08. CUSTOMER REVIEW
   ========================================================== */

.sec-loc-v2__review {
	width: 100%;
	max-width: none !important;
	margin: 0 !important;
	padding: 90px 30px !important;
	background: #faf7f1 !important;
}

.sec-loc-v2__review-inner {
	width: calc(100% - 60px);
	max-width: 880px !important;
	margin-left: auto !important;
	margin-right: auto !important;
	text-align: center;
}

.sec-loc-v2__review-quote {
	max-width: 800px;
	margin: 8px auto 22px !important;
	color: #062f5e !important;
	font-family: Georgia, "Times New Roman", serif !important;
	font-size: clamp(26px, 3vw, 37px) !important;
	font-style: italic;
	font-weight: 400 !important;
	line-height: 1.45 !important;
}

.sec-loc-v2__review-stars {
	margin: 0 0 10px !important;
	color: #eaaa22 !important;
	font-size: 23px !important;
	letter-spacing: 4px;
	line-height: 1 !important;
}

.sec-loc-v2__review-source {
	margin: 0 !important;
	color: #77838d !important;
	font-size: 13px !important;
}


/* ==========================================================
   09. FAQ
   Scoped aggressively because the existing site has
   global Details/accordion styling.
   ========================================================== */

.sec-loc-v2__faq {
	background: #ffffff !important;
}

.sec-loc-v2__faq-inner {
	max-width: 900px !important;
}

.sec-loc-v2__faq-list {
	width: 100% !important;
	max-width: none !important;
	margin: 38px 0 0 !important;
	padding: 0 !important;
}

.sec-loc-v2__faq-list > .sec-loc-v2__faq-item,
details.sec-loc-v2__faq-item {
	display: block !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 0 12px !important;
	padding: 0 !important;
	border: 1px solid #dce5ea !important;
	border-radius: 5px !important;
	background: #ffffff !important;
	color: #46576a !important;
	box-shadow: none !important;
	overflow: hidden;
}

details.sec-loc-v2__faq-item summary {
	position: relative;
	display: block !important;
	width: 100%;
	margin: 0 !important;
	padding: 21px 58px 21px 24px !important;
	border: 0 !important;
	background: #ffffff !important;
	color: #062f5e !important;
	cursor: pointer;
	font-size: 16px !important;
	font-weight: 700 !important;
	line-height: 1.45 !important;
	list-style: none !important;
}

details.sec-loc-v2__faq-item summary::-webkit-details-marker {
	display: none !important;
}

details.sec-loc-v2__faq-item summary::marker {
	content: "";
}

details.sec-loc-v2__faq-item summary::after {
	content: "+" !important;
	position: absolute;
	top: 50%;
	right: 24px;
	margin: 0;
	padding: 0;
	background: transparent !important;
	color: #008acb !important;
	font-size: 25px !important;
	font-weight: 400;
	line-height: 1;
	transform: translateY(-50%);
}

details.sec-loc-v2__faq-item[open] summary::after {
	content: "−" !important;
}

details.sec-loc-v2__faq-item[open] summary {
	background: #f8fbfc !important;
}

details.sec-loc-v2__faq-item > p {
	display: block !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 4px 58px 24px 24px !important;
	border: 0 !important;
	background: #f8fbfc !important;
	color: #46576a !important;
	font-size: 15px !important;
	font-weight: 400 !important;
	line-height: 1.75 !important;
}


/* ==========================================================
   10. BOTTOM CTA
   ========================================================== */

.sec-loc-v2__cta {
	position: relative;
	width: 100%;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	background: #062f5e !important;
	overflow: hidden;
}

.sec-loc-v2__cta::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(
			135deg,
			rgba(4, 38, 71, .97),
			rgba(6, 47, 94, .90)
		);
	pointer-events: none;
}

.sec-loc-v2__cta .wp-block-cover__inner-container {
	position: relative;
	z-index: 2;
	width: 100%;
}

.sec-loc-v2__cta-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: calc(100% - 60px);
	max-width: 1200px !important;
	min-height: 410px;
	margin-left: auto !important;
	margin-right: auto !important;
	text-align: center;
}

.sec-loc-v2__cta-title {
	max-width: 820px;
	margin: 0 auto 15px !important;
	color: #ffffff !important;
	font-size: clamp(36px, 4.5vw, 55px) !important;
	font-weight: 750 !important;
	line-height: 1.08 !important;
}

.sec-loc-v2__cta-text {
	max-width: 680px;
	margin: 0 auto 29px !important;
	color: rgba(255, 255, 255, .90) !important;
	font-size: 17px !important;
	line-height: 1.65 !important;
}

.sec-loc-v2__cta-buttons {
	justify-content: center !important;
	gap: 12px;
}


/* ==========================================================
   11. ACCESSIBILITY
   ========================================================== */

.sec-loc-v2__hero a:focus-visible,
.sec-loc-v2__intro a:focus-visible,
.sec-loc-v2__services a:focus-visible,
.sec-loc-v2__why a:focus-visible,
.sec-loc-v2__area a:focus-visible,
.sec-loc-v2__review a:focus-visible,
.sec-loc-v2__faq a:focus-visible,
.sec-loc-v2__faq summary:focus-visible,
.sec-loc-v2__cta a:focus-visible {
	outline: 3px solid #f5c242 !important;
	outline-offset: 3px;
}


/* ==========================================================
   12. TABLET
   ========================================================== */

@media (max-width: 1024px) {

	.sec-loc-v2__section {
		padding: 85px 0;
	}

	.sec-loc-v2__hero-inner {
		min-height: 550px;
	}

	.sec-loc-v2__area-content {
		padding: 55px 40px !important;
	}

}


/* ==========================================================
   13. MOBILE
   ========================================================== */

@media (max-width: 781px) {

	.sec-loc-v2__container {
		width: calc(100% - 40px);
	}

	.sec-loc-v2__section {
		padding: 68px 0;
	}

	.sec-loc-v2__heading {
		font-size: clamp(32px, 8vw, 42px) !important;
	}

	.sec-loc-v2__hero {
		min-height: 560px !important;
	}

	.sec-loc-v2__hero::after {
		background: rgba(3, 30, 58, .82);
	}

	.sec-loc-v2__hero-inner {
		min-height: 560px;
	}

	.sec-loc-v2__hero-title {
		font-size: clamp(38px, 10vw, 52px) !important;
	}

	.sec-loc-v2__hero-text {
		font-size: 16px !important;
	}

	.sec-loc-v2__intro-columns,
	.sec-loc-v2__why-columns {
		gap: 42px !important;
	}

	.sec-loc-v2__intro-image {
		min-height: 350px !important;
	}

	.sec-loc-v2__service-grid {
		gap: 22px !important;
	}

	.sec-loc-v2__service-image {
		min-height: 245px !important;
	}

	.sec-loc-v2__benefit {
		gap: 17px !important;
	}

	.sec-loc-v2__benefit-icon {
		flex-basis: 52px;
		width: 52px;
		height: 52px;
	}

	.sec-loc-v2__benefit-icon svg {
		width: 29px;
		height: 29px;
	}

	.sec-loc-v2__area-container {
		width: 100% !important;
	}

	.sec-loc-v2__area-columns {
		gap: 0 !important;
	}

	.sec-loc-v2__area-image {
		min-height: 320px !important;
	}

	.sec-loc-v2__area-content {
		max-width: none !important;
		padding: 55px 20px 65px !important;
	}

	.sec-loc-v2__review {
		padding: 70px 20px !important;
	}

	.sec-loc-v2__review-inner {
		width: 100%;
	}

	details.sec-loc-v2__faq-item summary {
		padding: 19px 50px 19px 18px !important;
		font-size: 15px !important;
	}

	details.sec-loc-v2__faq-item summary::after {
		right: 18px;
	}

	details.sec-loc-v2__faq-item > p {
		padding: 3px 20px 21px 18px !important;
	}

	.sec-loc-v2__cta {
		min-height: 380px !important;
	}

	.sec-loc-v2__cta-inner {
		width: calc(100% - 40px);
		min-height: 380px;
	}

}


/* ==========================================================
   14. SMALL MOBILE
   ========================================================== */

@media (max-width: 480px) {

	.sec-loc-v2__container {
		width: calc(100% - 32px);
	}

	.sec-loc-v2__hero-buttons,
	.sec-loc-v2__cta-buttons {
		width: 100%;
	}

	.sec-loc-v2__hero-buttons .wp-block-button,
	.sec-loc-v2__cta-buttons .wp-block-button {
		width: 100%;
	}

	.sec-loc-v2__hero-buttons .wp-block-button__link,
	.sec-loc-v2__cta-buttons .wp-block-button__link {
		width: 100%;
	}

	.sec-loc-v2__cta-inner {
		width: calc(100% - 32px);
	}

}


/* ==========================================================
   15. REDUCED MOTION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

	.sec-loc-v2__hero *,
	.sec-loc-v2__intro *,
	.sec-loc-v2__services *,
	.sec-loc-v2__why *,
	.sec-loc-v2__area *,
	.sec-loc-v2__review *,
	.sec-loc-v2__faq *,
	.sec-loc-v2__cta * {
		scroll-behavior: auto !important;
		transition: none !important;
	}

}