.services-track {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 24px;
	row-gap: 32px;
	grid-auto-rows: auto;
}

.service-card {
	background-color: transparent;
	border-radius: 20px;
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	box-shadow: 0 10px 30px rgba(27, 42, 78, 0.05);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	z-index: 1;
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 6;
	row-gap: 0;
}

/* LỚP 1: Ảnh nền được làm mờ */
.service-card::before {
	content: "";
	position: absolute;
	top: 0; 
	left: 0; 
	right: 0; 
	bottom: 0;
	background-image: url('/wp-content/uploads/2026/09/vvv.jpg'); 
	background-size: cover;
	background-position: center;

	transform: scale(1.1);
	z-index: -2;
}

/* LỚP 2: Lớp phủ màng màu nhẹ giúp chữ không bị rối mắt trên nền ảnh */
.service-card::after {
	content: "";
	position: absolute;
	top: 0; 
	left: 0; 
	right: 0; 
	bottom: 0;
	background-color: rgba(255, 255, 255, 0.75);
	z-index: -1;
}

.service-card.card-active {
	border: 2px solid var(--color-teal);
	box-shadow: 0 10px 40px rgba(0, 119, 255, 0.1);
}

.card-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 12px;
}

.card-icon {
	background-color: var(--color-teal);
	color: var(--color-white);
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.card-number {
	font-size: 14px;
	font-weight: 700;
	color: var(--color-teal);
}

.card-title {
	font-size: 20px;
	color: var(--color-deep-navy);
	font-weight: 600;
	line-height: 1.4;
}

.card-subtitle {
	font-family: 'Inter 24';
	font-size: 15px;
	color: var(--color-teal);
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 15px;
}

.card-desc {
	font-size: 16px;
	color: var(--color-black);
	line-height: 1.6;
	margin-bottom: 25px;
}

.card-deliverables {
	border-top: 1px solid var(--color-deep-navy);
	padding-top: 20px;
	margin-bottom: 20px;
}

.deliverables-title {
	font-family: 'Inter 24';
	font-size: 15px;
	font-weight: 600;
	color: var(--color-deep-navy);
	letter-spacing: 0.5px;
	margin-bottom: 15px;
}

.deliverables-list {
	list-style: none;
}

.deliverables-list li {
	display: flex;
	align-items: flex-start;
	font-size: 16px;
	color: var(--color-deep-navy);
	line-height: 1.5;
	margin-left: 0 !important;
}

.check-icon {
	color: var(--color-teal);
	border: 1px solid var(--color-light-blue);
	border-radius: 50%;
	width: 18px;
	height: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	font-weight: bold;
	margin-right: 10px;
	flex-shrink: 0;
	margin-top: 2px;
}

.card-cta {
	font-family: 'Inter 24';
	font-size: 14px;
	color: var(--color-teal);
	text-decoration: none;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: transform 0.2s;
	cursor: pointer;
}

.card-cta:hover {
	transform: translateX(4px);
}

.services-dots {
	display: none;
	justify-content: center;
	gap: 8px;
	margin-top: 20px;
}

.dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: var(--color-silver-blue);
	opacity: 0.5;
	transition: all 0.3s ease;
	cursor: pointer;
}

.dot.active {
	background-color: var(--color-indigo);
	opacity: 1;
	width: 20px;
	border-radius: 4px;
}

@media (max-width: 1024px) {
	.services-track {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.services-track {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
		-webkit-overflow-scrolling: touch;
		gap: 16px;
		padding-bottom: 10px;
	}

	.services-track::-webkit-scrollbar {
		display: none;
	}

	.service-card {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		flex: 0 0 100%;
		scroll-snap-align: start;
		min-height: auto;
	}

	.services-dots {
		display: flex;
	}
}