/* ------------------------------------------------------------------
   Sliding for Professionals - slider styles
------------------------------------------------------------------- */
.sfp-slider {
	position: relative;
	width: 100%;
	max-width: 1340px;
	margin: 48px auto 8px;
	overflow: hidden;
	border-radius: 24px;
	box-shadow: 0 20px 44px rgba(38, 30, 6, 0.16);
	background: #FFFDF5;
}

.sfp-track {
	display: flex;
	transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.sfp-slide {
	flex: 0 0 100%;
	min-width: 0;
	position: relative;
}

.sfp-slide-link {
	display: block;
	text-decoration: none;
	color: inherit;
	height: 100%;
}

.sfp-figure {
	position: relative;
	margin: 0;
	height: auto;
	line-height: 0;
}

.sfp-figure img,
.sfp-figure .sfp-placeholder {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	aspect-ratio: 16 / 9;
}

.sfp-caption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0;
	padding: 34px 26px 20px;
	background: linear-gradient(180deg, rgba(38, 30, 6, 0) 0%, rgba(38, 30, 6, 0.82) 100%);
	color: #FFFDF5;
	font-family: "Manrope", "Segoe UI", Arial, sans-serif;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.3;
}

.sfp-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 46px;
	height: 46px;
	border: none;
	border-radius: 50%;
	background: rgba(255, 196, 0, 0.94);
	color: #261E06;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 18px rgba(38, 30, 6, 0.28);
	transition: background 0.18s ease, transform 0.18s ease;
	z-index: 3;
}

.sfp-nav:hover {
	background: #ff9d00;
	color: #fffdf5;
}

.sfp-prev {
	left: 16px;
}

.sfp-next {
	right: 16px;
}

.sfp-dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 12px;
	z-index: 3;
	display: flex;
	gap: 8px;
	justify-content: center;
	pointer-events: none;
}

.sfp-dots .sfp-dot {
	pointer-events: auto;
	width: 9px;
	height: 9px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.55);
	cursor: pointer;
	transition: background 0.18s ease, width 0.18s ease, border-radius 0.18s ease;
}

.sfp-dots .sfp-dot.is-active {
	background: #FFC400;
	width: 22px;
	border-radius: 999px;
}

/* --- Layered (hero) slides --------------------------------------------- */
.sfp-slide.sfp-layers {
	flex: 0 0 100%;
	min-height: 540px;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: stretch;
}

.sfp-slide.sfp-layers .sfp-overlay {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.sfp-layers-stack {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 72px 48px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.sfp-layers-stack.sfp-align-left {
	text-align: left;
	align-items: flex-start;
}

.sfp-layers-stack.sfp-align-center {
	text-align: center;
	align-items: center;
}

.sfp-layers-stack.sfp-align-right {
	text-align: right;
	align-items: flex-end;
}

.sfp-layer {
	margin: 0 0 18px;
}

.sfp-layer:last-child {
	margin-bottom: 0;
}

.sfp-layer-heading {
	font-family: "Manrope", "Segoe UI", Arial, sans-serif;
	font-size: clamp(30px, 5.5vw, 58px);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -1px;
	color: #fffdf5;
	text-shadow: 0 2px 14px rgba(0, 0, 0, 0.28);
}

.sfp-layer-text {
	font-family: "Manrope", "Segoe UI", Arial, sans-serif;
	font-size: clamp(16px, 2vw, 20px);
	line-height: 1.6;
	color: rgba(255, 253, 245, 0.92);
	max-width: 46ch;
}

.sfp-layer-button {
	margin-top: 10px;
}

.sfp-btn {
	display: inline-block;
	background: #FFC400;
	color: #261E06;
	font-family: "Manrope", "Segoe UI", Arial, sans-serif;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	padding: 15px 32px;
	border-radius: 999px;
	text-decoration: none;
	box-shadow: 0 8px 22px rgba(38, 30, 6, 0.3);
	transition: background 0.18s ease, transform 0.18s ease;
}

.sfp-btn:hover {
	background: #ff9d00;
	color: #261E06;
	transform: translateY(-1px);
}

.sfp-slider[data-mode="hero"] .sfp-caption {
	display: none;
}

@media (max-width: 1099px) {
	.sfp-slide.sfp-layers {
		flex-basis: 100% !important;
	}
}

@media (max-width: 699px) {
	.sfp-layers-stack {
		padding: 56px 24px;
	}

	.sfp-slide.sfp-layers {
		min-height: 460px;
	}
}

@media (max-width: 1099px) {
	.sfp-slide {
		flex-basis: 50%;
	}
}

@media (max-width: 699px) {
	.sfp-slide {
		flex-basis: 100%;
	}

	.sfp-nav {
		width: 38px;
		height: 38px;
		font-size: 16px;
	}
}