/* ==========================================================================
   Premium service cards — WordPress / Ecommerce / Custom CMS
   ========================================================================== */

.wcz-premium-services {
	padding: var(--wcz-section-pad-y, clamp(36px, 4.5vw, 56px)) 0;
	background: #f3f4f6;
	text-align: center;
}

/* Intro — homepage premium services heading */
.wcz-premium-services-intro {
	text-align: center;
	max-width: 920px;
	margin: 0 auto var(--wcz-section-header-gap, clamp(24px, 3vw, 36px));
}

.wcz-premium-services-title {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: baseline;
	gap: 0.35em;
	font-family: var(--wcz-font-display);
	font-size: var(--wcz-section-title-size);
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #111827;
	line-height: 1.25;
	margin: 0 auto 18px;
	text-align: center;
}

.wcz-premium-services-title-light {
	font-weight: 500;
	color: #94a3b8;
}

.wcz-premium-services-title strong {
	font-weight: 800;
	color: #0f172a;
}

.wcz-premium-services-divider {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 2px;
	background: var(--wcz-primary, #00c2e5);
	margin: 0 auto 20px;
}

.wcz-premium-services-divider-caret {
	position: absolute;
	top: -7px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-bottom: 7px solid var(--wcz-primary, #00c2e5);
}

.wcz-premium-services-divider-line {
	display: none;
}

.wcz-premium-services-desc {
	font-size: var(--wcz-text-lg);
	line-height: 1.8;
	color: #6b7280;
	margin: 0 auto;
	text-align: center;
	max-width: 760px;
}

.wcz-premium-services--creative {
	position: relative;
	overflow: hidden;
}

.wcz-premium-services--creative::before {
	content: "";
	position: absolute;
	top: -120px;
	right: -80px;
	width: 320px;
	height: 320px;
	background: radial-gradient(circle, rgba(0, 194, 229, 0.08) 0%, transparent 70%);
	pointer-events: none;
}

.wcz-premium-services-eyebrow {
	display: inline-block;
	margin-bottom: 14px;
	padding: 6px 14px;
	font-size: var(--wcz-text-xs);
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--wcz-primary, #00c2e5);
	background: rgba(0, 194, 229, 0.08);
	border: 1px solid rgba(0, 194, 229, 0.2);
	border-radius: 999px;
}

.wcz-premium-service-num {
	position: absolute;
	top: 16px;
	right: 18px;
	font-family: var(--wcz-font-display);
	font-size: 2.5rem;
	font-weight: 800;
	line-height: 1;
	color: rgba(0, 194, 229, 0.1);
	pointer-events: none;
	z-index: 0;
	transition: color 0.3s ease;
}

.wcz-premium-service-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 0;
	background: var(--wcz-primary, #00c2e5);
	border-radius: 0 0 4px 0;
	transition: height 0.3s ease;
}

.wcz-premium-service-card:hover::before {
	height: 100%;
}

.wcz-premium-service-card:hover .wcz-premium-service-num {
	color: rgba(0, 194, 229, 0.18);
}

.wcz-premium-service-card:hover .wcz-premium-service-icon {
	transform: scale(1.08);
	background: rgba(0, 194, 229, 0.14);
}

.wcz-premium-services-footer {
	margin-top: clamp(36px, 5vw, 48px);
	text-align: center;
}

.wcz-premium-services-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(20px, 3vw, 32px);
}

.wcz-premium-service-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: clamp(36px, 4vw, 48px) clamp(24px, 3vw, 32px) clamp(32px, 3.5vw, 40px);
	background: #fff;
	border: 1px solid #e8edf2;
	border-radius: 12px;
	box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.wcz-premium-service-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 48px rgba(0, 194, 229, 0.12);
	border-color: rgba(0, 194, 229, 0.25);
}

.wcz-premium-service-card-wave {
	position: absolute;
	right: -20px;
	bottom: -20px;
	width: 140px;
	height: 140px;
	background: radial-gradient(circle at 30% 30%, rgba(0, 194, 229, 0.08) 0%, transparent 70%);
	pointer-events: none;
}

.wcz-premium-service-card-wave::before {
	content: "";
	position: absolute;
	inset: 0;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 60'%3E%3Cpath d='M0 30 Q30 10 60 30 T120 30 V60 H0 Z' fill='rgba(0,194,229,0.06)'/%3E%3C/svg%3E") no-repeat center bottom;
	background-size: 100% auto;
	opacity: 0.8;
}

.wcz-premium-service-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	margin-bottom: 22px;
	color: var(--wcz-primary, #00c2e5);
	background: rgba(0, 194, 229, 0.08);
	border: 2px solid rgba(0, 194, 229, 0.2);
	border-radius: 16px;
	position: relative;
	z-index: 1;
	transition: transform 0.3s ease, background 0.3s ease;
}

.wcz-premium-service-title {
	margin: 0 0 14px;
	font-family: var(--wcz-font-display);
	font-size: var(--wcz-text-md);
	font-weight: 700;
	color: #1a2332;
	line-height: 1.35;
	position: relative;
	z-index: 1;
	width: 100%;
	text-align: center;
}

.wcz-premium-service-divider {
	width: 36px;
	height: 3px;
	margin: 0 auto 18px;
	background: var(--wcz-primary, #00c2e5);
	border-radius: 999px;
	position: relative;
	z-index: 1;
}

.wcz-premium-service-desc {
	margin: 0 auto 24px;
	font-size: var(--wcz-text-base);
	line-height: 1.75;
	color: #7a8494;
	flex: 1;
	position: relative;
	z-index: 1;
	width: 100%;
	text-align: center;
}

.wcz-premium-service-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	font-size: var(--wcz-text-sm);
	font-weight: 600;
	color: var(--wcz-primary, #00c2e5);
	text-decoration: none;
	position: relative;
	z-index: 1;
	transition: gap 0.2s ease, color 0.2s ease;
}

.wcz-premium-service-link:hover {
	gap: 10px;
	color: #00a8c9;
}

@media (max-width: 960px) {
	.wcz-premium-services-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.wcz-premium-services-grid {
		grid-template-columns: 1fr;
		max-width: 480px;
		margin: 0 auto;
	}
}
