/* ============================================================
   Consultation CTA Widget — serenity-toolkit-pro
   ============================================================ */

.scc-wrap { width: 100%; }

/* ── Initial hidden state ─────────────────────────────────── */
.scc-box {
	background-color: #6B88BB;
	border-radius: 20px;
	padding: 52px 60px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	opacity: 0;
	transform: scale(0.94);
	filter: blur(4px);
	transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1),
	            transform 0.8s cubic-bezier(0.16,1,0.3,1),
	            filter 0.8s cubic-bezier(0.16,1,0.3,1);
}

.scc-animate .scc-heading,
.scc-animate .scc-subheading,
.scc-animate .scc-btn,
.scc-animate .scc-right {
	opacity: 0;
	transform: translateY(12px);
	filter: blur(8px);
}

.scc-heading, .scc-subheading, .scc-btn, .scc-right {
	transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1),
	            transform 0.9s cubic-bezier(0.16,1,0.3,1),
	            filter 0.9s cubic-bezier(0.16,1,0.3,1);
}

/* ── Visible state ────────────────────────────────────────── */
.scc-box.scc-visible {
	opacity: 1;
	transform: scale(1);
	filter: blur(0px);
}

.scc-box.scc-visible .scc-heading {
	opacity: 1; transform: translateY(0); filter: blur(0px);
	transition-delay: 0.2s;
}

.scc-box.scc-visible .scc-subheading {
	opacity: 1; transform: translateY(0); filter: blur(0px);
	transition-delay: 0.4s;
}

.scc-box.scc-visible .scc-btn {
	opacity: 1; transform: translateY(0); filter: blur(0px);
	transition-delay: 0.55s;
}

.scc-box.scc-visible .scc-right {
	opacity: 1; transform: translateY(0); filter: blur(0px);
	transition-delay: 0.3s;
}

/* ── Layout ───────────────────────────────────────────────── */
.scc-left {
	flex: 1;
	max-width: 55%;
}

.scc-right {
	flex-shrink: 0;
	width: 280px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.scc-right img {
	width: 100%;
	height: auto;
	object-fit: contain;
}

/* ── Typography ───────────────────────────────────────────── */
.scc-heading {
	font-family: 'Inter', sans-serif;
	font-size: 48px;
	font-weight: 400;
	color: #ffffff;
	margin: 0 0 20px;
	line-height: 1.15;
}

.scc-subheading {
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	color: rgba(255, 255, 255, 0.85);
	margin: 0 0 36px;
	line-height: 1.6;
}

/* ── Button ───────────────────────────────────────────────── */
.scc-btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: rgba(255, 255, 255, 0.15);
	color: #ffffff;
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
	padding: 10px 10px 10px 24px;
	border-radius: 50px;
	border: 1.5px solid rgba(255, 255, 255, 0.5);
	width: fit-content;
	transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.scc-btn:hover {
	background: #ffffff;
	border-color: #ffffff;
	color: #6B88BB;
}

.scc-btn-arrow {
	width: 36px;
	height: 36px;
	background: rgba(255, 255, 255, 0.25);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.3s ease;
	flex-shrink: 0;
}

.scc-btn:hover .scc-btn-arrow {
	background: #6B88BB;
}

.scc-btn-arrow svg {
	width: 16px;
	height: 16px;
	stroke: currentColor;
	transition: transform 0.3s ease;
}

.scc-btn:hover .scc-btn-arrow svg {
	transform: rotate(-45deg);
}

/* ── Editor: disable animation ────────────────────────────── */
.elementor-editor-active .scc-box,
.elementor-editor-active .scc-heading,
.elementor-editor-active .scc-subheading,
.elementor-editor-active .scc-btn,
.elementor-editor-active .scc-right {
	opacity: 1 !important;
	transform: none !important;
	filter: none !important;
	transition: none !important;
}

/* ── Mobile ───────────────────────────────────────────────── */
@media (max-width: 768px) {
	.scc-box {
		flex-direction: column;
		padding: 40px 32px;
	}
	.scc-left { max-width: 100%; }
	.scc-right { width: 200px; }
	.scc-heading { font-size: 36px; }
}
