/* Services CTA Section Styles */

.service-cta-section {
	padding: var(--space-20, 5rem) 0 var(--space-24, 6rem);
	background: transparent;
	position: relative;
	overflow: hidden;
}

body.dark-mode .service-cta-section {
	background: transparent;
}

.service-cta-section .page-container2 {
	padding: 0 var(--space-8, 2rem);
}

.service-cta-card {
	position: relative;
	max-width: 1100px;
	margin: 0 auto;
	padding: var(--space-20, 5rem) var(--space-16, 4rem);
	background: linear-gradient(135deg,
		#fef3f9 0%,
		#f5f3ff 25%,
		#f0f9ff 50%,
		#fff1f7 75%,
		#f8f7ff 100%);
	border-radius: var(--radius-3xl, 1.5rem);
	overflow: hidden;
	box-shadow: 0 30px 80px rgba(197, 31, 93, 0.15),
              0 15px 40px rgba(138, 43, 226, 0.12),
              inset 0 2px 4px rgba(255, 255, 255, 0.8);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	border: 2px solid rgba(197, 31, 93, 0.2);
	z-index: 1;
	animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.service-cta-card::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: conic-gradient(
		from 0deg,
		rgba(197, 31, 93, 0.15) 0deg,
		rgba(138, 43, 226, 0.12) 90deg,
		transparent 180deg,
		rgba(197, 31, 93, 0.15) 270deg,
		transparent 360deg
	);
	animation: ctaSpin 15s linear infinite;
	pointer-events: none;
}

@keyframes ctaSpin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.service-cta-card::after {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 30% 50%,
		rgba(197, 31, 93, 0.12) 0%,
		rgba(138, 43, 226, 0.08) 30%,
		transparent 60%);
	pointer-events: none;
}

.service-cta-card:hover {
	transform: translateY(-5px) scale(1.01);
	box-shadow: 0 40px 100px rgba(197, 31, 93, 0.25),
              0 20px 50px rgba(138, 43, 226, 0.18),
              inset 0 2px 4px rgba(255, 255, 255, 0.9);
	border-color: rgba(197, 31, 93, 0.35);
}

body.dark-mode .service-cta-card {
	background: linear-gradient(135deg, #c51f5d 0%, #8a2be2 100%);
	box-shadow: 0 30px 80px rgba(197, 31, 93, 0.35),
              0 15px 40px rgba(0, 0, 0, 0.15);
	border-color: transparent;
}

body.dark-mode .service-cta-card::before {
	background: conic-gradient(
		from 0deg,
		rgba(255, 255, 255, 0.1) 0deg,
		transparent 90deg,
		transparent 180deg,
		rgba(255, 255, 255, 0.1) 270deg,
		transparent 360deg
	);
}

body.dark-mode .service-cta-card::after {
	background: radial-gradient(circle at 30% 50%,
		rgba(255, 255, 255, 0.08) 0%,
		transparent 60%);
}

body.dark-mode .service-cta-card:hover {
	box-shadow: 0 40px 100px rgba(197, 31, 93, 0.45),
              0 20px 50px rgba(0, 0, 0, 0.2);
}

.cta-content {
	position: relative;
	z-index: 2;
	text-align: center;
	color: #1e1b29;
}

body.dark-mode .cta-content {
	color: var(--color-white, #ffffff);
}

.cta-title {
	font-size: clamp(2rem, 4.5vw, 3.5rem);
	font-weight: var(--font-weight-black, 900);
	margin-bottom: var(--space-6, 1.5rem);
	letter-spacing: -1.5px;
	background: linear-gradient(135deg, #c51f5d 0%, #8a2be2 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	line-height: var(--line-height-tight, 1.2);
	position: relative;
	z-index: 1;
}

body.dark-mode .cta-title {
	background: linear-gradient(135deg, #ffffff 0%, #fde1f0 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.cta-description {
	font-size: clamp(1.1rem, 2.5vw, 1.35rem);
	margin-bottom: var(--space-10, 2.5rem);
	opacity: 0.85;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	line-height: var(--line-height-relaxed, 1.7);
	color: #4a4458;
	position: relative;
	z-index: 1;
}

body.dark-mode .cta-description {
	color: rgba(255, 255, 255, 0.95);
	opacity: 1;
}

.cta-button-link {
	text-decoration: none;
	display: inline-block;
}

.cta-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-3, 0.75rem);
	padding: var(--space-6, 1.5rem) var(--space-12, 3rem);
	font-size: clamp(1.1rem, 2vw, 1.25rem);
	font-weight: var(--font-weight-bold, 700);
	font-family: inherit;
	color: var(--primary-color, #c51f5d);
	background: linear-gradient(135deg, #ffffff 0%, rgba(248, 247, 255, 0.9) 100%);
	border: 2px solid rgba(197, 31, 93, 0.15);
	border-radius: var(--radius-full, 9999px);
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 5px 15px rgba(197, 31, 93, 0.12), 0 2px 8px rgba(138, 43, 226, 0.08);
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.cta-button::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: radial-gradient(circle, rgba(197, 31, 93, 0.1), transparent);
	transform: translate(-50%, -50%);
	transition: width 0.6s ease, height 0.6s ease;
	border-radius: 50%;
}

.cta-button:hover::before {
	width: 300px;
	height: 300px;
}

.cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(197, 31, 93, 0.18), 0 5px 15px rgba(138, 43, 226, 0.12);
	background: linear-gradient(135deg, #ffffff 0%, rgba(254, 243, 249, 0.9) 100%);
	border-color: rgba(197, 31, 93, 0.25);
}

body.dark-mode .cta-button {
	background: #fff;
	color: var(--primary-color, #c51f5d);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
	border-color: transparent;
}

body.dark-mode .cta-button::before {
	background: radial-gradient(circle, rgba(197, 31, 93, 0.15), transparent);
}

body.dark-mode .cta-button:hover {
	background: #fff;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
	border-color: transparent;
}

.cta-button:active {
	transform: translateY(-3px) scale(1.02);
}

.cta-button:focus-visible {
	outline: 3px solid var(--color-white, #ffffff);
	outline-offset: 3px;
}

.cta-icon {
	width: 1.5rem;
	height: 1.5rem;
	transition: transform var(--transition-base, 200ms);
}

.cta-button:hover .cta-icon {
	transform: translateX(5px);
}


.cta-decorative {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 1;
	opacity: 0.3;
}

.cta-circle {
	position: absolute;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.3);
	animation: circleFloat 20s ease-in-out infinite;
}

.cta-circle-1 {
	width: 200px;
	height: 200px;
	top: -50px;
	right: -50px;
	animation-delay: 0s;
}

.cta-circle-2 {
	width: 150px;
	height: 150px;
	bottom: -30px;
	left: 10%;
	animation-delay: 7s;
}

.cta-circle-3 {
	width: 180px;
	height: 180px;
	top: 50%;
	left: -60px;
	animation-delay: 14s;
}

@keyframes circleFloat {

	0%,
	100% {
		transform: translate(0, 0) scale(1);
		opacity: 0.3;
	}

	50% {
		transform: translate(20px, -20px) scale(1.1);
		opacity: 0.5;
	}
}

@media (max-width: 1024px) {
	.service-cta-card {
		padding: var(--space-16, 4rem) var(--space-12, 3rem);
	}

	.cta-circle-1 {
		width: 150px;
		height: 150px;
	}

	.cta-circle-2 {
		width: 120px;
		height: 120px;
	}

	.cta-circle-3 {
		width: 140px;
		height: 140px;
	}
}

@media (max-width: 768px) {
	.service-cta-section {
		padding: var(--space-16, 4rem) 0 var(--space-20, 5rem);
	}

	.service-cta-card {
		padding: var(--space-12, 3rem) var(--space-8, 2rem);
	}

	.cta-title {
		margin-bottom: var(--space-5, 1.25rem);
	}

	.cta-description {
		margin-bottom: var(--space-8, 2rem);
	}

	.cta-button {
		padding: var(--space-5, 1.25rem) var(--space-10, 2.5rem);
		font-size: 1.1rem;
	}

	.cta-circle {
		border-width: 1.5px;
	}

	.cta-circle-1 {
		width: 120px;
		height: 120px;
	}

	.cta-circle-2 {
		width: 90px;
		height: 90px;
	}

	.cta-circle-3 {
		width: 100px;
		height: 100px;
	}
}

@media (max-width: 576px) {
	.service-cta-card {
		padding: var(--space-10, 2.5rem) var(--space-6, 1.5rem);
	}

	.cta-button {
		width: 100%;
		max-width: 320px;
	}
}
