/*
 Theme Name:   Hello Elementor Child
 Theme URI:    https://elementor.com/hello-theme/
 Description:  Child theme for Hello Elementor — Location pages
 Author:       SLS
 Template:     hello-elementor
 Version:      1.0.0
 Text Domain:  hello-elementor-child
*/

/* ==========================================================================
   Location Page — Base & Overflow Safety
   ========================================================================== */

.single-location {
	overflow-x: clip;
}
.entry-header,
.page-header,
h1.entry-title {
  display: none !important;
}

.single-location .loc-hero,
.single-location .loc-services,
.single-location .loc-third,
.single-location .loc-reviews,
.single-location .loc-areas,
.single-location .loc-why,
.single-location .loc-scroll {
	width: 100%;
	max-width: 100%;
	overflow-x: clip;
	box-sizing: border-box;
}

.single-location .loc-hero__inner,
.single-location .loc-services .container,
.single-location .loc-third .container,
.single-location .loc-reviews .container,
.single-location .loc-areas .container,
.single-location .loc-why .container,
.single-location .loc-scroll .container {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	padding: 0;
	box-sizing: border-box;
}

/* ==========================================================================
   Location Page — Global Section Spacing
   ========================================================================== */

.single-location .loc-hero,
.single-location .loc-services,
.single-location .loc-third,
.single-location .loc-reviews,
.single-location .loc-areas,
.single-location .loc-why,
.single-location .loc-scroll {
	padding: 70px 0;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.single-location .loc-hero {
	background: #00a0c6;
}

.single-location .loc-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 400px);
	gap: 48px;
	align-items: center;
}

.single-location .loc-hero .loc-hero__title {
	font-size: clamp(2rem, 4.5vw, 3.25rem);
	font-weight: 700;
	line-height: 1.15;
	color: #fff !important;
	margin: 0 0 20px;
}

.single-location .loc-hero__desc {
	font-size: 1.05rem;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.95);
}

.single-location .loc-hero__desc p {
	margin: 0 0 12px;
}

.single-location .loc-hero__desc p:last-child {
	margin-bottom: 0;
}

.single-location .loc-hero__card {
	background: #fff;
	border-radius: 12px;
	padding: 36px 32px 32px;
	text-align: center;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.single-location .loc-hero__card-title {
	font-size: clamp(1.25rem, 2.5vw, 1.65rem);
	font-weight: 700;
	line-height: 1.35;
	color: #111;
	margin: 0 0 28px;
}
.loc-hero__btn {
	display: inline-block;
	padding: 16px 36px;
	background: #03A2CA;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 8px;
	border:1px solid #03A2CA;
	transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.loc-hero__btn:hover {
	background: #008eb0;
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 6px 18px rgba(0, 160, 198, 0.45);
}


.single-location .loc-hero__contact {
	margin: 20px 0 0;
	font-size: 0.95rem;
	color: #666;
}

.single-location .loc-hero__contact a {
	color: #444;
	text-decoration: none;
	font-weight: 500;
}

.single-location .loc-hero__contact a:hover {
	color: #00a0c6;
	text-decoration: underline;
}

/* ==========================================================================
   Services Section
   ========================================================================== */

.single-location .loc-services {
	background: linear-gradient(180deg, #f0f9fc 0%, #e8f6fb 100%);
}

.single-location .loc-services__header {
	text-align: center;
}

.single-location .loc-services__eyebrow {
	display: inline-block;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #00a0c6;
	margin: 0 0 12px;
}

.single-location .loc-services__title {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 700;
	line-height: 1.2;
	color: #111;
	margin: 0 0 16px;
}

.single-location .loc-services__intro {
	font-size: 1rem;
	line-height: 1.7;
	color: #555;
}

.single-location .loc-services__intro p {
	margin: 0;
}

.single-location .loc-services__cards {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
	margin-top:25px;
}

.single-location .loc-service-card {
	position: relative;
	background: #fff;
	border-radius: 14px;
	padding: 28px 24px 24px;
	box-shadow: 0 4px 20px rgba(0, 80, 100, 0.08);
	border: 1px solid rgba(0, 160, 198, 0.1);
	display: flex;
	flex-direction: column;
	min-width: 0;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	overflow: hidden;
}

.single-location .loc-service-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0, 160, 198, 0.15);
}

.single-location .loc-service-card__accent {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #00a0c6, #00c4e8);
}

.single-location .loc-service-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	min-width: 0;
}

.single-location .loc-service-card__title {
	font-size: 1.1rem;
	font-weight: 700;
	line-height: 1.35;
	color: #111;
	margin: 0 0 12px;
}

.single-location .loc-service-card__title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
}

.single-location .loc-service-card__title a:hover {
	color: #00a0c6;
}

.single-location .loc-service-card__text {
	font-size: 0.9rem;
	line-height: 1.65;
	color: #666;
	margin: 0 0 20px;
	flex: 1;
}

.single-location .loc-service-card__link {
	display: inline-block;
	font-size: 0.875rem;
	font-weight: 600;
	color: #00a0c6;
	text-decoration: none;
	margin-top: auto;
	transition: color 0.2s ease;
}

.single-location .loc-service-card__link:hover {
	color: #008eb0;
	text-decoration: underline;
}

.single-location .loc-service-card__link::after {
	content: " →";
}

/* ==========================================================================
   Shared Split Layout (3rd Section & Why Choose)
   ========================================================================== */

.single-location .loc-third {
	background: #fff;
}

.single-location .loc-why {
	background: #F7F7F7;
}

.single-location .loc-third__inner,
.single-location .loc-why__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 40px;
	align-items: center;
}

.single-location .loc-third__media,
.single-location .loc-why__media {
	display: flex;
	align-items: stretch;
	min-width: 0;
	max-width: 100%;
	padding-left: 28px;
	padding-bottom: 28px;
	box-sizing: border-box;
}

.single-location .loc-third__image-frame,
.single-location .loc-why__image-frame {
	position: relative;
	width: 100%;
	min-width: 0;
	min-height: 100%;
	max-width: 100%;
}

.single-location .loc-third__image-bg,
.single-location .loc-why__image-bg {
	position: absolute;
	top: 28px;
	left: -28px;
	right: 28px;
	bottom: -28px;
	background: #00a0c6;
	border-radius: 16px;
	z-index: 0;
}

.single-location .loc-third__image,
.single-location .loc-why__image {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	max-width: 100%;
	height: 100%;
	min-height: 320px;
	border-radius: 16px;
	object-fit: cover;
}

.single-location .loc-third__content,
.single-location .loc-why__content {
	min-width: 0;
}

.single-location .loc-third__title,
.single-location .loc-why__title {
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
	font-weight: 700;
	line-height: 1.2;
	color: #111;
	margin: 0 0 24px;
}

.single-location .loc-third__desc,
.single-location .loc-why__desc {
	font-size: 1rem;
	line-height: 1.75;
	color: #555;
	margin-bottom: 32px;
	overflow-wrap: break-word;
}

.single-location .loc-third__desc p,
.single-location .loc-why__desc p {
	margin: 0 0 16px;
}

.single-location .loc-third__desc p:last-child,
.single-location .loc-why__desc p:last-child {
	margin-bottom: 0;
}

.single-location .loc-third__btn,
.single-location .loc-why__btn {
	margin-top: 8px;
}

/* ==========================================================================
   Customer Reviews (TrustIndex)
   ========================================================================== */

.single-location .loc-reviews {
	position: relative;
	background-color: #00a0c6;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.single-location .loc-reviews__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 160, 198, 0.82);
	z-index: 1;
}

.single-location .loc-reviews .container {
	position: relative;
	z-index: 2;
	overflow-x: clip;
}

.single-location .loc-reviews .loc-reviews__title {
	color: #fff !important;
	text-align: center;
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 44px;
}

/* ==========================================================================
   Areas We Serve + Map
   ========================================================================== */

.single-location .loc-areas {
	background: #fff;
}

.single-location .loc-areas__main-title {
	text-align: center;
	font-size: clamp(1.65rem, 3.2vw, 2.5rem);
	font-weight: 700;
	line-height: 1.4;
	color: #111;
	max-width: 860px;
	margin: 0 auto 52px;
	overflow-wrap: break-word;
}

.single-location .loc-areas__main-title span,
.single-location .loc-areas__main-title strong,
.single-location .loc-areas__main-title em {
	color: #00a0c6;
	font-style: normal;
}

.single-location .loc-areas__grid {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
	gap: 40px;
	align-items: start;
}

.single-location .loc-areas__grid--no-map {
	grid-template-columns: minmax(0, 1fr);
	max-width: 720px;
	margin: 0 auto;
}

.single-location .loc-areas__map {
	position: relative;
	width: 100%;
	min-width: 0;
	height: 300px;
	overflow: hidden;
	background: #e8e8e8;
	border-radius: 8px;
}

.single-location .loc-areas__map iframe,
.single-location .loc-areas__map-frame {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: 100%;
	border: 0;
	display: block;
}

.single-location .loc-areas__panel {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	min-width: 0;
}

.single-location .loc-areas__subtitle {
	font-size: 1.2rem;
	font-weight: 700;
	color: #111;
	margin: 0 0 16px;
	line-height: 1.3;
}

.single-location .loc-areas__locations {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
}

.single-location .loc-areas__location {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 12px 18px;
	background: #e1eef6;
	border-radius: 8px;
	text-decoration: none;
	color: #2a2a2a;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.25;
	min-height: 46px;
	min-width: 0;
	transition: background 0.25s ease, color 0.25s ease;
}

.single-location .loc-areas__location:hover {
	background: #00a0c6;
	color: #fff;
}

.single-location .loc-areas__location-name {
	flex: 1;
	min-width: 0;
	line-height: 1.3;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.single-location .loc-areas__arrow {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: #111;
	color: #fff;
	transition: background 0.25s ease, color 0.25s ease;
}

.single-location .loc-areas__location:hover .loc-areas__arrow {
	background: #fff;
	color: #00a0c6;
}

/* ==========================================================================
   Scroll Content Box
   ========================================================================== */

.single-location .loc-scroll {
	background: #fff;
}

.single-location .loc-scroll__content {
	height: 420px;
	padding: 28px 24px 28px 32px;
	background: #fff;
	border: 1px solid #d9d9d9;
	border-radius: 12px;
	overflow-y: auto;
	overflow-x: hidden;
	color: #444;
	font-size: 1rem;
	line-height: 1.75;

}

.single-location .loc-scroll__content::-webkit-scrollbar {
	width: 10px;
}

.single-location .loc-scroll__content::-webkit-scrollbar-track {
	background: #e8e8e8;
	border-radius: 10px;
	margin: 12px 4px;
}

.single-location .loc-scroll__content::-webkit-scrollbar-thumb {
	background: #00a0c6;
	border-radius: 10px;
	border: 2px solid #e8e8e8;
}

.single-location .loc-scroll__content::-webkit-scrollbar-thumb:hover {
	background: #008eb0;
}

.single-location .loc-scroll__content h2,
.single-location .loc-scroll__content h3,
.single-location .loc-scroll__content h4 {
	color: #111;
	font-weight: 700;
	line-height: 1.3;
	margin: 0 0 12px;
}

.single-location .loc-scroll__content h2 {
	font-size: clamp(1.35rem, 2.5vw, 1.75rem);
	margin-bottom: 16px;
}

.single-location .loc-scroll__content h3 {
	font-size: clamp(1.1rem, 2vw, 1.25rem);
	margin-top: 20px;
}

.single-location .loc-scroll__content h4 {
	font-size: 1.05rem;
	margin-top: 16px;
}

.single-location .loc-scroll__content p {
	margin: 0 0 14px;
}

.single-location .loc-scroll__content p:last-child {
	margin-bottom: 0;
}

.single-location .loc-scroll__content ul,
.single-location .loc-scroll__content ol {
	margin: 0 0 14px;
	padding-left: 1.25rem;
}

.single-location .loc-scroll__content li {
	margin-bottom: 6px;
}

.single-location .loc-scroll__content strong {
	color: #111;
	font-weight: 700;
}

/* ==========================================================================
   Tablet (max-width: 991px)
   ========================================================================== */

@media (max-width: 991px) {
	.single-location .loc-hero__inner {
		grid-template-columns: minmax(0, 1fr);
		gap: 32px;
	}

	.single-location .loc-hero__card {
		max-width: 440px;
		margin: 0 auto;
		width: 100%;
	}

	.single-location .loc-services__cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 20px;
	}

	.single-location .loc-third__inner,
	.single-location .loc-why__inner {
		grid-template-columns: minmax(0, 1fr);
		gap: 40px;
		align-items: center;
	}

	.single-location .loc-third__media,
	.single-location .loc-why__media {
		order: -1;
		min-height: auto;
		padding-left: 20px;
		padding-bottom: 20px;
	}

	.single-location .loc-third__image,
	.single-location .loc-why__image {
		height: auto;
		min-height: 280px;
	}

	.single-location .loc-third__image-bg,
	.single-location .loc-why__image-bg {
		top: 20px;
		left: -16px;
		right: 20px;
		bottom: -16px;
	}

	.single-location .loc-areas__grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 32px;
	}

	.single-location .loc-areas__map {
		height: 340px;
	}

	.single-location .loc-areas__locations {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

/* ==========================================================================
   Mobile (max-width: 575px)
   ========================================================================== */

@media (max-width: 575px) {
	.single-location .loc-hero,
	.single-location .loc-services,
	.single-location .loc-third,
	.single-location .loc-reviews,
	.single-location .loc-areas,
	.single-location .loc-why,
	.single-location .loc-scroll {
		padding: 30px 15px;
	}

	.single-location .loc-scroll__content {
		height: 320px;
		padding: 22px 20px;
	}

	.single-location .loc-hero__inner {
		gap: 24px;
	}

	.single-location .loc-hero__card {
		padding: 28px 22px 24px;
	}

	.single-location .loc-hero__btn,
	.single-location .loc-third__btn,
	.single-location .loc-why__btn {
		width: 100%;
		padding: 15px 20px;
		text-align: center;
		box-sizing: border-box;
	}

	.single-location .loc-services__header {
		margin-bottom: 32px;
	}

	.single-location .loc-services__cards {
		grid-template-columns: minmax(0, 1fr);
		gap: 16px;
	}

	.single-location .loc-service-card {
		padding: 24px 20px 20px;
	}

	.single-location .loc-third__inner,
	.single-location .loc-why__inner {
		gap: 28px;
	}

	.single-location .loc-third__media,
	.single-location .loc-why__media {
		padding-left: 12px;
		padding-bottom: 12px;
	}

	.single-location .loc-third__image,
	.single-location .loc-why__image {
		min-height: 240px;
	}

	.single-location .loc-third__image-bg,
	.single-location .loc-why__image-bg {
		top: 16px;
		left: -12px;
		right: 16px;
		bottom: -12px;
	}

	.single-location .loc-third__title,
	.single-location .loc-why__title {
		font-size: clamp(1.5rem, 6vw, 1.85rem);
	}

	.single-location .loc-reviews .loc-reviews__title {
		margin-bottom: 28px;
		font-size: clamp(1.5rem, 6vw, 1.85rem);
	}

	.single-location .loc-areas__main-title {
		margin-bottom: 32px;
		font-size: clamp(1.4rem, 5.5vw, 1.75rem);
	}

	.single-location .loc-areas__map {
		height: 280px;
	}

	.single-location .loc-areas__locations {
		grid-template-columns: minmax(0, 1fr);
	}

	.single-location .loc-areas__location {
		padding: 12px 14px;
	}
}
