.service-showcase-premium-c5245333 {
	display: flex;
	flex-direction: column;
	border-radius: 20px;
	overflow: hidden;
	background: #ffffff;
	box-shadow: 0 15px 40px rgba(45, 24, 16, 0.08);
	transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
	position: relative;
	height: 100%;
}

.service-showcase-premium-c5245333:hover {
	transform: translateY(-10px);
	box-shadow: 0 30px 60px rgba(45, 24, 16, 0.15);
}

.service-showcase-premium__image-wrap {
	position: relative;
	width: 100%;
	height: 280px;
	overflow: hidden;
}

.service-showcase-premium__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-showcase-premium-c5245333:hover .service-showcase-premium__image {
	transform: scale(1.08);
}

.service-showcase-premium__image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(45,24,16,0) 0%, rgba(45,24,16,0.3) 100%);
	z-index: 1;
	opacity: 0;
	transition: opacity 0.5s ease;
}

.service-showcase-premium-c5245333:hover .service-showcase-premium__image-overlay {
	opacity: 1;
}

.service-showcase-premium__content {
	padding: 2.5rem;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	background: #ffffff;
	position: relative;
	z-index: 2;
}

.service-showcase-premium__title {
	font-family: var(--e-global-typography-primary-font-family), sans-serif;
	font-size: 1.75rem;
	font-weight: 800;
	color: #2d1810;
	margin: 0 0 1rem 0;
	line-height: 1.2;
	letter-spacing: -0.02em;
	transition: color 0.3s ease;
}

.service-showcase-premium-c5245333:hover .service-showcase-premium__title {
	color: #8b7355;
}

.service-showcase-premium__desc {
	font-size: 1.0625rem;
	color: #6b5d52;
	line-height: 1.7;
	margin: 0 0 2rem 0;
	flex-grow: 1;
}

.service-showcase-premium__action {
	margin-top: auto;
}

.service-showcase-premium__button {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 2.25rem;
	background: linear-gradient(135deg, #8b7355 0%, #a68968 100%);
	color: #faf8f5 !important;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 700;
	font-size: 0.9375rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
	box-shadow: 0 10px 25px rgba(139, 115, 85, 0.3);
	border: none;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.service-showcase-premium__button::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #a68968 0%, #8b7355 100%);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 1;
}

.service-showcase-premium__button .btn-text,
.service-showcase-premium__button .btn-icon {
	position: relative;
	z-index: 2;
}

.service-showcase-premium__button .btn-icon {
	display: flex;
	transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-showcase-premium-c5245333:hover .service-showcase-premium__button {
	transform: translateY(-2px);
	box-shadow: 0 15px 35px rgba(139, 115, 85, 0.4);
}

.service-showcase-premium-c5245333:hover .service-showcase-premium__button::before {
	opacity: 1;
}

.service-showcase-premium-c5245333:hover .service-showcase-premium__button .btn-icon {
	transform: translateX(5px);
}

/* Canvas for confetti */
#confetti-canvas-c5245333 {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	pointer-events: none;
	z-index: 9999;
}