/* =====================================================================
   Top Grade Movers — pages/services.css
   Services hub + single pages (single-service.php).
   The shared inner-page hero (.page-hero), stats bar, process and CTA band
   live in components/sections.css; only the hero glow modifier and the
   page-specific sections below belong here.
   ===================================================================== */

/* =========================================================
   0. HERO — extra soft radial glows over the shared .page-hero
   ========================================================= */
.page-hero--services::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background:
		radial-gradient(circle at 18% 42%, rgba(var(--primary-rgb), .28) 0%, rgba(var(--primary-rgb), 0) 52%),
		radial-gradient(circle at 85% 92%, rgba(var(--primary-rgb), .12) 0%, rgba(var(--primary-rgb), 0) 50%);
}

/* Figma casing is verbatim ("Add-on &"); the shared .page-hero__title
   capitalizes every word, which would wrongly force "Add-On". */
.page-hero--services .page-hero__title {
	text-transform: none;
}

/* The intro ("Everything, Handled.") and the photo + feature list
   ("Add It On, Stress Off.") are shared sections — see
   template-parts/sections/split-intro.php and photo-features.php. Their
   styles live in components/sections.css so the assisted-supported-moves
   branch can reuse them without duplicating CSS. */

/* =========================================================
   1. SERVICES GRID (service CPT) — dark section
   ========================================================= */
.services-grid {
	background: var(--dark-bg-3);
	padding: 4.375rem 0 5.625rem;
}

.services-grid__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: var(--gap-lg);
	flex-wrap: wrap;
	margin-bottom: 2.875rem;
}

.services-grid__eyebrow {
	color: var(--primary-color);
}

.services-grid__heading {
	font-size: clamp(1.75rem, 3vw, 2.875rem);
	font-weight: var(--font-weight-extrabold);
	letter-spacing: -.025em;
	color: var(--text-color-light);
	margin: 0;
}

.services-grid__heading i {
	font-style: italic;
}

.services-grid__count {
	font-size: var(--body-size-xs);
	font-weight: var(--font-weight-bold);
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--text-color-light);
	padding-bottom: .375rem;
}

.services-grid__row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.75rem;
}

.service-card {
	position: relative;
	border: 1px solid var(--dark-border);
	border-radius: var(--radius-sm);
	padding: 2.4375rem 2.0625rem 2.5625rem;
	overflow: hidden;
}

.service-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 66px;
	height: 66px;
	border-radius: var(--radius-14);
	background: rgba(var(--primary-rgb), .1);
	color: var(--primary-color);
	margin-bottom: .8rem;
}

.service-card__icon svg {
	width: 32px;
	height: 32px;
}

.service-card__title {
	font-size: 1.3125rem;
	font-weight: var(--font-weight-extrabold);
	letter-spacing: -.01em;
	color: var(--text-color-light);
	margin-bottom: .6rem;
}

.service-card__text {
	color: rgba(var(--white-rgb), .82);
	font-size: .90625rem;
	line-height: 1.75;
	margin-bottom: 1.1rem;
}

.service-card__text p {
	margin: 0;
}

.service-card__cta {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	color: var(--primary-color);
	font-size: .75rem;
	font-weight: var(--font-weight-bold);
	letter-spacing: .12em;
	text-transform: uppercase;
}

.service-card__cta:hover {
	color: var(--primary-hover);
}

.service-card__num {
	position: absolute;
	right: 1.25rem;
	bottom: .3rem;
	font-size: 4.875rem;
	line-height: 1;
	font-weight: var(--font-weight-extrabold);
	color: rgba(var(--white-rgb), .28);
	pointer-events: none;
}

.service-card--bundle {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	border: 1px dashed rgba(var(--primary-rgb), .4);
	text-align: left;
}

.service-card--bundle__title {
	font-size: 1.625rem;
	font-weight: var(--font-weight-extrabold);
	letter-spacing: -.01em;
	color: var(--text-color-light);
	margin-bottom: .5rem;
}

.service-card--bundle__text {
	color: rgba(var(--white-rgb), .82);
	font-size: .90625rem;
	line-height: 1.75;
	margin-bottom: 1.5rem;
}

.service-card--bundle__cta {
	display: inline-flex;
}

.red-color {
	color: #FF4D1F;
}

/* =========================================================
   2. RESPONSIVE
   (shared header/footer/hero/process/stats/cta breakpoints live in
   media.css / components/sections.css; these are specific to this page)
   ========================================================= */
.service-card--bundle__cta:hover,
.service-single__actions .tg-btn--primary:hover {
	--bs-btn-hover-bg: #fff;
	--bs-btn-hover-color: var(--black);
	--bs-btn-hover-border-color: #fff;
}

@media (max-width: 991.98px) {
	.services-grid__row {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767.98px) {
	.services-grid__row {
		grid-template-columns: 1fr;
	}

	.services-grid__heading {
		font-size: 1.875rem;
	}

	.services-grid__head {
		align-items: flex-start;
	}

	.service-card__num {
		font-size: 3.5rem;
	}
}

/* =========================================================
   3. SINGLE SERVICE PAGE (single-service.php)
   ========================================================= */
.page-hero--service-single::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background:
		radial-gradient(circle at 18% 42%, rgba(var(--primary-rgb), .28) 0%, rgba(var(--primary-rgb), 0) 52%),
		radial-gradient(circle at 85% 92%, rgba(var(--primary-rgb), .12) 0%, rgba(var(--primary-rgb), 0) 50%);
}

.service-single {
	padding: 4.375rem 0;
}

.service-single__inner {
	background: var(--light-bg);
	border-radius: var(--radius-sm);
	padding: 3rem;
}

.service-single__icon-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 120px;
	height: 120px;
	border-radius: var(--radius-sm);
	background: rgba(var(--primary-rgb), .1);
	color: var(--primary-color);
	margin: 0 auto;
}

.service-single__icon svg {
	width: 64px;
	height: 64px;
}

.service-single__content p {
	margin-bottom: 1rem;
	line-height: 1.8;
	color: var(--text-color);
}

.service-single__content p:last-child {
	margin-bottom: 0;
}

.service-single__actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

@media (max-width: 991.98px) {
	.service-single__icon-wrapper {
		margin-bottom: 2rem;
	}
}

@media (max-width: 767.98px) {
	.service-single__inner {
		padding: 1.5rem;
	}

	.service-single__actions {
		flex-direction: column;
	}

	.service-single__actions .tg-btn {
		width: 100%;
	}
}
