/*
 * Final "Ready to Start Your Canadian Immigration Journey?" CTA —
 * switched from dark charcoal to a light background. The heading/text
 * were hardcoded white for the old dark fill, so they need to flip to
 * dark for contrast, and the outline "Contact Us" button (built for a
 * dark backdrop) needs a dark border/text instead of white.
 */

.elementor-element-263f77f .cta-section {
	padding-top: 0 !important;
	margin-top: 0;
}

/* Button row: proper centered flex alignment instead of the inline
   text-align + margin-right hack in the stored HTML */
.elementor-element-263f77f div[style*="text-align:center"] {
	display: flex !important;
	align-items: center;
	justify-content: center;
	gap: 18px;
	flex-wrap: wrap;
	margin-top: 24px !important;
}

.elementor-element-263f77f .theme-btn-two[style*="margin-right"] {
	margin-right: 0 !important;
}

.elementor-element-263f77f .cta-section .inner-box h2 {
	color: var(--nji-charcoal);
}

.elementor-element-263f77f .cta-section .inner-box p,
.elementor-element-263f77f .cta-section .inner-box .text {
	color: var(--nji-text-body);
}

.elementor-element-263f77f .cta-section .inner-box .text:before,
.elementor-element-263f77f .cta-section .inner-box .text:after,
.elementor-element-263f77f .cta-section .inner-box .text .dotted-box .dotted {
	background: var(--nji-red);
}

/* "Contact Us" outline button: dark border/text instead of white,
   since the backdrop is no longer dark */
.elementor-element-263f77f .theme-btn-one {
	border-color: var(--nji-charcoal) !important;
	color: var(--nji-charcoal) !important;
}

.elementor-element-263f77f .theme-btn-one:after {
	background: var(--nji-charcoal) !important;
}

.elementor-element-263f77f .theme-btn-one:hover {
	color: #fff !important;
}

/* "Book a Consultation" primary button: gradient fill + shimmer sweep,
   matching the other primary CTAs on the page */
.elementor-element-263f77f .theme-btn-two {
	background: linear-gradient(120deg, var(--nji-red-light) 0%, var(--nji-red) 35%, var(--nji-red-dark) 70%, var(--nji-red) 100%);
	background-size: 300% 300%;
	animation: njiGradientShift 3s ease infinite;
	border: none;
	position: relative;
	overflow: hidden;
	z-index: 1;
	box-shadow: 0 8px 22px rgba(236, 28, 36, 0.25);
}

.elementor-element-263f77f .theme-btn-two:before {
	content: '';
	position: absolute;
	top: 0;
	left: -60%;
	width: 40%;
	height: 100%;
	background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.45) 50%, transparent 100%);
	transform: skewX(-20deg);
	animation: njiShimmerSweep 2.6s ease-in-out infinite;
	z-index: 2;
	pointer-events: none;
}

.elementor-element-263f77f .theme-btn-two span,
.elementor-element-263f77f .theme-btn-two i {
	position: relative;
	z-index: 3;
}

.elementor-element-263f77f .theme-btn-two:after {
	display: none;
}

.elementor-element-263f77f .theme-btn-two:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 26px rgba(236, 28, 36, 0.5);
}

@keyframes njiGradientShift {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

@keyframes njiShimmerSweep {
	0% { left: -60%; }
	100% { left: 140%; }
}
