.csc-services-section {
	background: #16181c;
	padding: 60px 40px 40px;
	box-sizing: border-box;
}

.csc-track {
	display: flex;
	gap: 24px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	padding-bottom: 8px;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.csc-track::-webkit-scrollbar { display: none; }

.csc-service-card {
	position: relative;
	flex: 0 0 300px;
	height: 420px;
	border-radius: 4px;
	overflow: hidden;
	scroll-snap-align: start;
	text-decoration: none;
	display: block;
	color: #fff;
	background: #222;
	cursor: pointer;
}

.csc-card-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
}
.csc-service-card:hover .csc-card-img {
	transform: scale(1.06);
}

.csc-card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.15) 55%, rgba(0,0,0,.3) 100%);
}

.csc-card-body {
	position: relative;
	z-index: 2;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 24px;
	box-sizing: border-box;
}

.csc-card-body h3 {
	font-size: 19px;
	font-weight: 600;
	line-height: 1.3;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: .3px;
}

.csc-card-body p {
	font-size: 14px;
	line-height: 1.6;
	margin: 10px 0 0;
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transition: max-height .4s ease, opacity .3s ease, margin .4s ease;
}

.csc-service-card:hover .csc-card-body p {
	max-height: 220px;
	opacity: 1;
	margin-top: 12px;
}

.csc-controls {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 30px;
}

.csc-dots {
	display: flex;
	gap: 8px;
}
.csc-dots .csc-dot {
	width: 30px;
	height: 3px;
	background: #4a4a4a;
	border-radius: 2px;
	cursor: pointer;
	transition: background .3s ease;
}
.csc-dots .csc-dot.active {
	background: #f0a500;
}

.csc-arrows {
	display: flex;
	gap: 12px;
}
.csc-arrow {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 1px solid #555;
	background: transparent;
	color: #fff;
	font-size: 18px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .25s ease, border-color .25s ease;
}
.csc-arrow:hover {
	background: #f0a500;
	border-color: #f0a500;
	color: #16181c;
}

@media (max-width: 768px) {
	.csc-services-section { padding: 40px 16px 24px; }
	.csc-service-card { flex: 0 0 240px; height: 340px; }
}
