/* L1 Hero Slider — full bleed, no left/right padding */

.elementor-widget-l1_hero_slider,
.elementor-widget-l1_hero_slider > .elementor-widget-container {
	padding-left: 0 !important;
	padding-right: 0 !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

.l1-hs {
	position: relative;
	width: 100%;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background: #ffffff;
	--l1-hs-purple: #4b2a7a;
	--l1-hs-gold: #c4a35a;
	--l1-hs-dark: #1f1f1f;
	--l1-hs-muted: #4a4a4a;
}

.l1-hs__viewport {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.l1-hs__track {
	position: relative;
	width: 100%;
}

.l1-hs-slide {
	position: relative;
	display: none;
	width: 100%;
	min-height: 520px;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	background: #ffffff;
	overflow: hidden;
}

.l1-hs-slide.is-active {
	display: block;
	animation: l1HsFade 0.55s ease;
}

@keyframes l1HsFade {
	from { opacity: 0.35; }
	to { opacity: 1; }
}

.l1-hs-slide__media {
	position: absolute;
	inset: 0 0 0 38%;
	background-color: #e8e4ef;
	background-image: var(--l1-hs-image);
	background-repeat: no-repeat;
	background-position: center right;
	background-size: cover;
	z-index: 1;
}

.l1-hs-slide__fade {
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	background: linear-gradient(
		90deg,
		#ffffff 0%,
		#ffffff 42%,
		rgba(255, 255, 255, 0.92) 52%,
		rgba(255, 255, 255, 0.45) 62%,
		rgba(255, 255, 255, 0) 78%
	);
}

.l1-hs-slide__inner {
	position: relative;
	z-index: 3;
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 1200px;
	min-height: inherit;
	margin: 0 auto;
	padding: 90px 0 48px;
	box-sizing: border-box;
}

.l1-hs-slide__content {
	position: relative;
	z-index: 3;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	max-width: 560px;
	width: 100%;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

.l1-hs-slide__heading {
	margin: 0;
	padding: 0;
	font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	font-size: clamp(28px, 3.4vw, 46px);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: var(--l1-hs-dark);
}

.l1-hs-slide__heading-dark,
.l1-hs-slide__heading-accent {
	display: block;
}

.l1-hs-slide__heading-accent {
	color: var(--l1-hs-purple);
}

.l1-hs-slide__rule {
	display: block;
	width: 72px;
	height: 3px;
	margin: 18px 0 0;
	padding: 0;
	background: var(--l1-hs-gold);
	border: 0;
}

.l1-hs-slide__desc {
	margin: 22px 0 0;
	padding: 0;
	max-width: 480px;
	font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	font-size: 15.5px;
	font-weight: 400;
	line-height: 1.7;
	color: var(--l1-hs-muted);
}

.l1-hs-slide__btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 28px 0 0;
	padding: 14px 22px;
	border: 0;
	border-radius: 4px;
	background: var(--l1-hs-purple);
	color: #ffffff;
	font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-decoration: none;
	line-height: 1;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.l1-hs-slide__btn:hover {
	opacity: 0.92;
	color: #ffffff;
	transform: translateY(-1px);
}

.l1-hs-slide__btn-icon {
	display: block;
	flex: 0 0 auto;
}

.l1-hs-arrow {
	position: absolute;
	top: 50%;
	z-index: 5;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	margin: 0;
	padding: 0;
	border: 1px solid rgba(75, 42, 122, 0.25);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.92);
	color: var(--l1-hs-purple);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.l1-hs-arrow:hover {
	color: #ffffff;
}

.l1-hs-arrow--prev { left: 12px; }
.l1-hs-arrow--next { right: 12px; }

.l1-hs-dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 18px;
	z-index: 5;
	display: flex;
	justify-content: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	pointer-events: none;
}

.l1-hs-dot {
	pointer-events: auto;
	width: 9px;
	height: 9px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(75, 42, 122, 0.28);
	cursor: pointer;
}

.l1-hs-dot.is-active {
	background: var(--l1-hs-purple);
}

@media (max-width: 991px) {
	.elementor-widget-l1_hero_slider > .elementor-widget-container {
		padding-left: 0 !important;
		padding-right: 0 !important;
	}

	.l1-hs-slide.is-active {
		min-height: 0;
	}

	.l1-hs-slide__media {
		position: relative;
		inset: auto;
		width: 118%;
		height: 280px;
		transform: translateX(-12%);
		background-position: center right;
		background-size: cover;
	}

	.l1-hs-slide__fade {
		display: none;
	}

	.l1-hs-slide__inner {
		display: block;
		max-width: 1200px;
		padding: 90px 20px 56px;
		min-height: 0;
		box-sizing: border-box;
	}

	.l1-hs-slide__content {
		max-width: none;
	}

	.l1-hs-arrow {
		display: none;
	}
}

@media (max-width: 575px) {
	.elementor-widget-l1_hero_slider > .elementor-widget-container {
		padding-left: 0 !important;
		padding-right: 0 !important;
	}

	.l1-hs-slide__media {
		height: 360px;
		width: 100%;
		transform: none;
		background-image: var(--l1-hs-image-mobile, var(--l1-hs-image));
		background-position: center center;
		background-size: cover;
	}

	.l1-hs-slide__inner {
		padding: 50px 20px 48px;
	}

	.l1-hs-slide__heading {
		font-size: 26px;
	}
}
