/* Reset & Base Container */
.acb-sg-services-wrapper,
.acb-sg-services-wrapper * {
	box-sizing: border-box;
}

.acb-sg-services-wrapper {
	width: 100%;
	background-color: #0b071e;
	padding: 80px 20px;
}

.acb-sg-services-container {
	max-width: 1240px;
	margin: 0 auto;
	width: 100%;
}

/* Header */
.acb-sgs-header {
	text-align: center;
	margin-bottom: 50px;
}

.acb-sgs-subtitle {
	color: #c7b3ce;
	font-size: 11px;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 14px;
}

.acb-sgs-title {
	color: #d99a6c;
	font-size: 48px;
	font-family: 'Georgia', serif;
	line-height: 1.2;
	margin: 0;
}

/* 4-Column Responsive Grid (Prevents Overflowing) */
.acb-sgs-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	width: 100%;
}

/* Base Card Style */
.acb-sgs-card {
	width: 100%;
	min-height: 340px;
	/* Dashed Border from Figma: 2px, 15% white */
	border: 2px dashed rgba(255, 255, 255, 0.15);
	padding: 32px 24px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	transition: transform 0.3s ease, border-color 0.3s ease;
	position: relative;
}

/* Cards 1 & 3: Teal Gradient (Odd Items) */
.acb-sgs-card:nth-child(odd) {
	background: linear-gradient(180deg, #150f3d 0%, #195f74 100%);
}

/* Cards 2 & 4: Deep Purple Background (Even Items) */
.acb-sgs-card:nth-child(even) {
	background: linear-gradient(180deg, #130f2f 0%, #100b21 100%);
}

/* Hover Effect */
.acb-sgs-card:hover {
	border-style: solid;
	border-color: rgba(217, 154, 108, 0.5);
	transform: translateY(-4px);
}

/* Icon Bubble */
.acb-sgs-icon-wrap {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.08);
	color: #d99a6c;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 22px;
	font-size: 18px;
	flex-shrink: 0;
}

.acb-sgs-icon-wrap svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

/* Card Content Typography */
.acb-sgs-card-title {
	color: #d99a6c;
	font-size: 22px;
	font-family: 'Georgia', serif;
	line-height: 1.25;
	margin: 0 0 10px 0;
}

.acb-sgs-price {
	color: #ffffff;
	font-size: 11px;
	letter-spacing: 1.5px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 16px;
	opacity: 0.9;
}

.acb-sgs-desc {
	color: rgba(255, 255, 255, 0.75);
	font-size: 13px;
	line-height: 1.5;
	margin: 0 0 20px 0;
}

/* Link Button */
.acb-sgs-link {
	margin-top: auto;
	color: #d99a6c;
	font-size: 12px;
	letter-spacing: 2px;
	font-weight: 600;
	text-decoration: none;
	text-transform: uppercase;
	transition: letter-spacing 0.2s ease, color 0.2s ease;
}

.acb-sgs-link:hover {
	color: #ffffff;
	letter-spacing: 3px;
}

/* Responsive Layout */
@media (max-width: 1024px) {
	.acb-sgs-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}

@media (max-width: 600px) {
	.acb-sg-services-wrapper {
		padding: 50px 15px;
	}

	.acb-sgs-title {
		font-size: 34px;
	}

	.acb-sgs-grid {
		grid-template-columns: 1fr;
	}

	.acb-sgs-card {
		min-height: auto;
	}
}