/* Services Directory Page - Matching Figma Design */

/* Main Container */
.services-directory {
	background: #ffffff;
	overflow-x: hidden;
}

.services-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 50px;
}

/* Hero Section */
.services-hero {
	position: relative;
	padding: 100px 0 60px;
	overflow: hidden;
}

.services-hero__bg {
	position: absolute;
	inset: 0;
	background: #f5f1ed url('/wp-content/uploads/2025/12/warm-bg.svg') no-repeat center top;
	background-size: cover;
	z-index: 0;
}

.services-hero__bg::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(245, 241, 237, 0.8) 100%);
	opacity: 1;
}

.services-hero .services-container {
	position: relative;
	z-index: 1;
}

/* Breadcrumb */
.services-breadcrumb {
	display: flex;
	align-items: center;
	gap: 4px;
	margin-bottom: 60px;
	font-size: 14px;
	line-height: 20px;
}

.services-breadcrumb__link {
	color: #27272a;
	text-decoration: none;
	font-weight: 500;
	padding: 0 4px;
	transition: color 0.2s;
}

.services-breadcrumb__link:hover {
	color: #000000;
}

.services-breadcrumb__separator {
	color: #a1a1aa;
	display: flex;
	align-items: center;
	padding: 0 4px;
}

.services-breadcrumb__separator svg {
	width: 16px;
	height: 16px;
	stroke: #a1a1aa;
}

.services-breadcrumb__current {
	color: #a1a1aa;
	font-weight: 500;
	padding: 0 4px;
}

/* Header */
.services-header {
	display: flex;
	gap: 20px;
	align-items: flex-start;
	margin-bottom: 60px;
}

.services-header__content {
	flex: 1;
	max-width: 780px;
}

.services-header__title {
	font-family: 'TWK Everett', sans-serif;
	font-size: 48px;
	font-weight: 500;
	letter-spacing: -1.44px;
	line-height: 1;
	color: #000000;
	margin: 0 0 16px;
}

.services-header__subtitle {
	font-family: 'DM Sans', sans-serif;
	font-size: 28px;
	font-weight: 300;
	line-height: 1.4;
	color: #000000;
	margin: 0;
}

/* CTA Card */
.services-cta-card {
	width: 380px;
	padding: 36px;
	background: rgba(255, 255, 255, 0.6);
	backdrop-filter: blur(20px);
	border-radius: 28px;
	border: 1px solid rgba(255, 255, 255, 0.6);
	box-shadow: 0px 0.5px 2px 0px rgba(0, 0, 0, 0.08),
				inset 0px 0.5px 0px 0px rgba(255, 255, 255, 0.2),
				inset 0px 0px 8px 2px rgba(255, 255, 255, 0.12);
}

.services-cta-card__text {
	font-family: 'DM Sans', sans-serif;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.5;
	color: #191a23;
	margin: 0 0 20px;
}

.services-cta-card__button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	width: 100%;
	height: 48px;
	padding: 12px 16px 12px 24px;
	background: #000000;
	color: #ffffff;
	font-family: 'DM Sans', sans-serif;
	font-size: 20px;
	font-weight: 500;
	border: 2px solid #000000;
	border-radius: 12px;
	text-decoration: none;
	transition: all 0.2s;
	cursor: pointer;
}

.services-cta-card__button:hover {
	background: #1a1a1a;
	border-color: #1a1a1a;
}

.services-cta-card__button svg {
	width: 16px;
	height: 16px;
	stroke: #ffffff;
}

/* Services Content */
.services-content {
	padding: 100px 0;
	background: #ffffff;
}

.services-section-header {
	max-width: 780px;
	margin-bottom: 60px;
}

.services-section-header__title {
	font-family: 'TWK Everett', sans-serif;
	font-size: 36px;
	font-weight: 500;
	line-height: 1;
	color: #000000;
	margin: 0 0 12px;
}

.services-section-header__description {
	font-family: 'DM Sans', sans-serif;
	font-size: 28px;
	font-weight: 300;
	line-height: 1.4;
	color: #000000;
	margin: 0;
}

/* Services Grid */
.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

/* Service Card */
.service-card {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 24px;
	background: rgba(255, 255, 255, 0.6);
	border: 1px solid rgba(17, 17, 17, 0.15);
	border-radius: 12px;
	text-decoration: none;
	transition: all 0.2s;
	min-height: 96px;
}

.service-card:hover {
	background: #ffffff;
	border-color: #000000;
	transform: translateY(-2px);
	box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
}

.service-card__content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.service-card__title {
	font-family: 'TWK Everett', sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4;
	color: #000000;
	margin: 0;
}

.service-card__meta {
	display: flex;
	align-items: center;
	height: 28px;
}

.service-card__providers {
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	color: #71717a;
}

.service-card__arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	flex-shrink: 0;
}

.service-card__arrow svg {
	width: 20px;
	height: 20px;
	stroke: #000000;
}

.service-card:hover .service-card__arrow svg {
	transform: translateX(2px);
	transition: transform 0.2s;
}

/* No Services */
.no-services {
	text-align: center;
	padding: 60px 20px;
	font-size: 18px;
	color: #666666;
}

/* Bottom CTA Section */
.services-bottom-cta {
	position: relative;
	padding: 100px 0;
	overflow: hidden;
}

.services-bottom-cta__bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, #f5f1ed 18.462%, #fee5ff 46.768%);
	z-index: 0;
}

.services-bottom-cta__bg::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 1890px 1992px at 580px 1100px, rgba(81, 114, 225, 1) 0%, rgba(155, 81, 224, 0) 80%);
	opacity: 0.6;
}

.services-bottom-cta .services-container {
	position: relative;
	z-index: 1;
}

/* Services Banner */
.services-banner {
	position: relative;
	display: flex;
	gap: 24px;
	align-items: center;
	padding: 36px;
	background: #fff3da;
	border-radius: 28px;
	overflow: hidden;
}

.services-banner::before {
	content: '';
	position: absolute;
	top: -361px;
	left: -370px;
	width: 1920px;
	height: 1080px;
	background: url('/wp-content/uploads/2025/12/cta-bg.svg') no-repeat center;
	background-size: cover;
	opacity: 1;
	pointer-events: none;
	z-index: 0;
}

.services-banner__content {
	position: relative;
	z-index: 1;
	flex: 1;
	max-width: 643px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.services-banner__label {
	font-family: 'TWK Everett', sans-serif;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	color: #000000;
	text-transform: uppercase;
	letter-spacing: 0;
	margin: 0;
	display: block;
}

.services-banner__title {
	font-family: 'TWK Everett', sans-serif;
	font-size: 36px;
	font-weight: 500;
	line-height: 1;
	color: #000000;
	margin: 0;
}

.services-banner__buttons {
	display: flex;
	gap: 20px;
	align-items: center;
}

.services-banner__button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	height: 64px;
	padding: 12px 16px 12px 24px;
	font-family: 'DM Sans', sans-serif;
	font-size: 20px;
	font-weight: 500;
	border-radius: 12px;
	text-decoration: none;
	transition: all 0.2s;
	cursor: pointer;
	white-space: nowrap;
}

.services-banner__button--primary {
	background: #000000;
	color: #ffffff;
	border: 2px solid #000000;
}

.services-banner__button--primary:hover {
	background: #1a1a1a;
	border-color: #1a1a1a;
}

.services-banner__button--primary svg {
	stroke: #ffffff;
}

.services-banner__button--secondary {
	background: transparent;
	color: #000000;
	border: 2px solid transparent;
}

.services-banner__button--secondary:hover {
	background: rgba(0, 0, 0, 0.05);
}

.services-banner__button--secondary svg {
	stroke: #000000;
}

.services-banner__button svg {
	width: 16px;
	height: 16px;
}

.services-banner__graphic {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
	width: auto;
	height: 100%;
	max-height: 298px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding-right: 0;
}

.services-banner__graphic-img {
	height: 298px;
	width: auto;
	max-width: none;
	object-fit: contain;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.services-banner__content {
		max-width: 550px;
	}

	.services-banner__graphic {
		right: -50px;
		max-height: 245px;
	}

	.services-banner__graphic-img {
		height: 245px;
	}
}

@media (max-width: 1200px) {
	.services-container {
		padding: 0 30px;
	}

	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.services-header {
		flex-direction: column;
	}

	.services-cta-card {
		width: 100%;
		max-width: 500px;
	}

	.services-banner {
		flex-direction: column;
	}

	.services-banner__graphic {
		width: 100%;
		height: 200px;
	}
}

@media (max-width: 768px) {
	.services-container {
		padding: 0 20px;
	}

	.services-hero {
		padding: 60px 0 40px;
	}

	.services-header__title {
		font-size: 36px;
		letter-spacing: -1px;
	}

	.services-header__subtitle {
		font-size: 20px;
	}

	.services-section-header__title {
		font-size: 28px;
	}

	.services-section-header__description {
		font-size: 20px;
	}

	.services-grid {
		grid-template-columns: 1fr;
	}

	.services-banner {
		padding-bottom: 160px;
	}

	.services-banner__label {
		font-size: 11px;
	}

	.services-banner__title {
		font-size: 24px;
	}

	.services-banner__buttons {
		flex-direction: column;
		width: 100%;
	}

	.services-banner__button {
		width: 100%;
		height: 56px;
		font-size: 18px;
	}

	.services-banner__graphic {
		position: absolute;
		bottom: 0;
		right: 50%;
		top: auto;
		transform: translateX(50%);
		height: 140px;
		max-height: 140px;
	}

	.services-banner__graphic-img {
		height: 140px;
		width: auto;
	}

	.services-content {
		padding: 60px 0;
	}

	.services-bottom-cta {
		padding: 60px 0;
	}
}
