/**
 * /services/ — Professional services overview page.
 */

.swjs-services-page-wrap {
	padding-top: 40px;
	padding-bottom: 80px;
}

.swjs-services-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Intro */
.swjs-services-intro {
	text-align: center;
	max-width: 860px;
	margin: 0 auto 50px;
}

.swjs-services-intro__title {
	font-family: Quicksand, sans-serif;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.3;
	color: #1a2332;
	margin: 0 0 16px;
}

.swjs-services-intro__text {
	font-size: 16px;
	line-height: 1.7;
	color: #4b5563;
	margin: 0;
}

/* Service group grid */
.swjs-services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
	gap: 32px;
	margin-bottom: 60px;
}

.swjs-services-group {
	background: #fff;
	border: 1px solid #e5eaef;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
	transition: box-shadow 0.25s ease;
}

.swjs-services-group:hover {
	box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
}

.swjs-services-group__header {
	padding: 20px 22px 14px;
	border-bottom: 1px solid #eef2f6;
}

.swjs-services-group__title {
	font-family: Quicksand, sans-serif;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.35;
	margin: 0;
	color: #1a2332;
}

.swjs-services-group__title a {
	color: #1a2332;
	text-decoration: none;
	transition: color 0.2s ease;
}

.swjs-services-group__title a:hover {
	color: #095fa8;
}

/* Service item list */
.swjs-services-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.swjs-services-item {
	margin: 0;
	border-bottom: 1px solid #f0f3f7;
}

.swjs-services-item:last-child {
	border-bottom: none;
}

.swjs-services-item__link {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 22px;
	text-decoration: none;
	color: #374151;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.4;
	transition: background 0.2s ease, color 0.2s ease;
}

.swjs-services-item__link:hover {
	background: #f7f9fc;
	color: #095fa8;
}

.swjs-services-item__icon {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
}

.swjs-services-item__icon svg {
	width: 28px;
	height: 28px;
	fill: currentColor;
}

.swjs-services-item__icon-fallback {
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #86D2E9;
}

.swjs-services-item__label {
	flex: 1 1 auto;
	min-width: 0;
}

/* CTA section */
.swjs-services-cta {
	max-width: 720px;
	margin: 0 auto;
}

.swjs-services-cta__card {
	text-align: center;
	padding: 44px 36px;
	background: #f7f9fc;
	border: 1px solid #e5eaef;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.swjs-services-cta__title {
	font-family: Quicksand, sans-serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.35;
	color: #1a2332;
	margin: 0 0 12px;
}

.swjs-services-cta__text {
	font-size: 16px;
	line-height: 1.7;
	color: #4b5563;
	margin: 0 0 28px;
}

.swjs-services-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
}

.swjs-services-cta__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 32px;
	border-radius: 8px;
	font-family: Quicksand, sans-serif;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.swjs-services-cta__btn--whatsapp {
	background: #86D2E9;
	color: #fff;
}

.swjs-services-cta__btn--whatsapp:hover {
	background: #FAD6DA;
	color: #fff;
	box-shadow: 0 6px 20px rgba(250, 214, 218, 0.3);
}

.swjs-services-cta__btn--email {
	background: #1a2332;
	color: #fff;
}

.swjs-services-cta__btn--email:hover {
	background: #2d3a4f;
	color: #fff;
	box-shadow: 0 6px 20px rgba(26, 35, 50, 0.18);
}

/* Responsive */
@media (max-width: 768px) {
	.swjs-services-intro__title {
		font-size: 26px;
	}

	.swjs-services-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.swjs-services-cta__card {
		padding: 32px 20px;
	}

	.swjs-services-cta__title {
		font-size: 20px;
	}

	.swjs-services-cta__actions {
		flex-direction: column;
		align-items: stretch;
	}
}
