/* =====================================================================
   Top Grade Movers — thank-you.css
   The post-submission confirmation page (pages/template-thank-you.php).
   Deliberately lighter than the marketing pages: no dark hero, just a
   centered confirmation panel plus a "what happens next" strip.
   ===================================================================== */

.thank-you-section {
	padding-block: var(--section-spacing);
}

.thank-you__container {
	max-width: 1100px;
	text-align: center;
}

.thank-you__intro {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 640px;
	margin-inline: auto;
}

.thank-you__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 84px;
	height: 84px;
	margin-bottom: 1.5rem;
	border-radius: var(--radius-full);
	background: rgba(var(--primary-rgb), .12);
	color: var(--primary-color);
}

.thank-you__badge svg {
	width: 34px;
	height: 34px;
}

.thank-you__title {
	margin-top: .5rem;
}

.thank-you__message {
	margin-top: 1rem;
}

.thank-you__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
	margin-top: 2rem;
}

.thank-you__actions .tg-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.thank-you__actions .tg-btn svg {
	width: 16px;
	height: 16px;
}

.thank-you__steps {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	margin-top: var(--section-spacing);
	text-align: left;
}

.thank-you__step {
	display: flex;
	gap: 14px;
	padding: 24px;
	background: var(--light-bg);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
}

.thank-you__step-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: var(--radius-full);
	background: var(--background-color);
	color: var(--primary-color);
}

.thank-you__step-icon svg {
	width: 18px;
	height: 18px;
}

.thank-you__step-title {
	font-size: 1.05rem;
	font-weight: var(--font-weight-semibold);
	margin-bottom: .35rem;
}

.thank-you__step-text {
	color: var(--text-color);
	font-size: var(--body-size-sm, .9rem);
	line-height: var(--body-line-height);
}

@media (max-width: 767.98px) {
	.thank-you__steps {
		grid-template-columns: 1fr;
	}
}
