/* Property Hero / Banner Section */

.pls-hero {
	--pls-orange: #f15a29;
	--pls-navy: #14213d;
	--pls-lime: #c6f24e;
	--pls-gray: #9ca3af;
	/* max-width: 1400px; */
	margin: 0 auto;
	background: var(--pls-navy);
	/* border-radius: 24px; */
	padding: 44px 48px 56px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
	color: #fff !important;
	position: relative;
}

.pls-hero button,
.pls-hero a {
	font-family: inherit;
	box-shadow: none;
	outline: none;
}

.pls-hero-top {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 32px;
}

.pls-hero-eyebrow {
	display: block;
	color: var(--pls-orange);
	font-weight: 700;
	font-size: 14px;
	margin-bottom: 10px;
}

.pls-hero-title {
	font-size: 34px;
	line-height: 1.25;
	font-weight: 800;
	margin: 0;
	max-width: 550px;
	color: #fff !important;
}

.pls-hero-add-btn {
	box-sizing: border-box;
	display: inline-flex !important;
	align-items: center;
	gap: 10px;
	border: 1px solid var(--pls-lime) !important;
	background: transparent !important;
	color: var(--pls-lime) !important;
	text-decoration: none !important;
	font-weight: 700 !important;
	font-size: 14px !important;
	line-height: normal;
	padding: 12px 22px !important;
	border-radius: 999px !important;
	white-space: nowrap;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
}

.pls-hero-add-btn:hover {
	background: var(--pls-lime) !important;
	color: var(--pls-navy) !important;
}

/* Media (image slider + overlay card) */
.pls-hero-media {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	aspect-ratio: 2.7 / 1;
	height: auto;
	min-height: 380px;
	max-height: 520px;
}

.pls-hero-slides {
	position: absolute;
	inset: 0;
}

.pls-hero-slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center 30%;
	opacity: 0;
	transition: opacity 0.6s ease;
}

.pls-hero-slide.is-active {
	opacity: 1;
}

.pls-hero-slides::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0) 45%);
	pointer-events: none;
}

/* Overlay info card, top-right of the image */
.pls-hero-card {
	position: absolute;
	top: 28px;
	right: 28px;
	width: 260px;
	background: #fff;
	color: var(--pls-navy);
	border-radius: 14px;
	border: 2px solid #fff;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
	z-index: 2;
}

.pls-hero-card-label {
	display: block;
	background: var(--pls-navy);
	color: #fff;
	font-size: 11px;
	padding: 8px 16px 2px;
}

.pls-hero-card-title {
	background: var(--pls-navy);
	color: #fff !important;
	font-size: 16px;
	font-weight: 700;
	margin: 0;
	padding: 0 16px 12px;
}

.pls-hero-card-location {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 10px 16px;
	border-bottom: 1px solid #eee;
}

.pls-hero-card-location span {
	font-size: 11px;
	color: var(--pls-gray);
}

.pls-hero-card-location strong {
	font-size: 14px;
	color: var(--pls-navy);
}

.pls-hero-card-features {
	display: flex;
	justify-content: space-between;
	gap: 6px;
	padding: 10px 16px;
	border-bottom: 1px solid #eee;
	font-size: 11px;
	color: var(--pls-navy);
}

.pls-hero-card-features i {
	color: var(--pls-gray);
	margin-right: 3px;
}

.pls-hero-card-price-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 16px;
}

.pls-hero-card-price {
	color: var(--pls-orange);
	font-weight: 700;
	font-size: 16px;
}

.pls-hero-card-avatar img {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	object-fit: cover;
}

.pls-hero-card-btn {
	box-sizing: border-box;
	display: flex !important;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: var(--pls-navy) !important;
	color: var(--pls-lime) !important;
	text-decoration: none !important;
	font-weight: 700 !important;
	font-size: 13px !important;
	line-height: normal;
	border: none !important;
	border-radius: 0 !important;
	padding: 12px !important;
	width: 100%;
	transition: background 0.2s ease;
}

.pls-hero-card-btn:hover {
	background: #1c2c52 !important;
	color: var(--pls-lime) !important;
}

/* Bottom-left category pills */
.pls-hero-tabs {
	position: absolute;
	bottom: 60px;
	left: 28px;
	display: flex;
	gap: 10px;
	z-index: 2;
	flex-wrap: wrap;
}

.pls-hero-tab {
	box-sizing: border-box;
	display: inline-flex !important;
	align-items: center;
	gap: 8px;
	border: 1px solid rgba(255, 255, 255, 0.6) !important;
	background: rgba(20, 33, 61, 0.4) !important;
	color: #fff !important;
	text-decoration: none !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	line-height: normal;
	padding: 8px 16px !important;
	margin: 0;
	border-radius: 999px !important;
	cursor: pointer;
	-webkit-backdrop-filter: blur(3px);
	backdrop-filter: blur(3px);
	transition: background 0.2s ease, color 0.2s ease;
}

.pls-hero-tab:hover {
	background: rgba(255, 255, 255, 0.15) !important;
}

.pls-hero-tab.is-active {
	background: var(--pls-orange) !important;
	border-color: var(--pls-orange) !important;
	color: #fff !important;
}

/* Bottom slide-nav (Previews / progress / Next) */
.pls-hero-slidenav {
	position: absolute;
	bottom: 24px;
	left: 28px;
	right: 28px;
	display: flex;
	align-items: center;
	gap: 18px;
	z-index: 2;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
}

.pls-hero-progress {
	flex: 1;
	height: 2px;
	background: rgba(255, 255, 255, 0.3);
	position: relative;
	border-radius: 2px;
	overflow: hidden;
}

.pls-hero-progress-fill {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 0%;
	background: #fff;
	transition: width 0.4s ease;
}

.pls-hero-next {
	box-sizing: border-box;
	background: transparent !important;
	border: none !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	color: #fff !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	line-height: normal;
	letter-spacing: 0.06em;
	padding: 0 !important;
	margin: 0;
	white-space: nowrap;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
}

.pls-hero-next:hover {
	color: var(--pls-lime) !important;
}

/* Reviews floating widget, bottom-right */
.pls-hero-reviews {
	position: absolute;
	bottom: 120px;
	right: 100px;
	display: flex;
	gap: 24px;
	background: #223252;
	border-radius: 14px;
	padding: 16px 24px;
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
	z-index: 3;
}

.pls-hero-review-block {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.pls-hero-review-brand {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 700;
	color: #fff;
}

.pls-trustpilot-icon {
	color: #00b67a;
}

.pls-hero-review-meta {
	display: flex;
	align-items: center;
	gap: 10px;
}

.pls-hero-avatars {
	display: flex;
}

.pls-hero-avatars i {
	font-size: 22px;
	color: #cbd5e1;
	margin-left: -6px;
	background: #223252;
	border-radius: 50%;
}

.pls-hero-avatars i:first-child {
	margin-left: 0;
}

.pls-hero-review-numbers {
	display: flex;
	flex-direction: column;
	font-size: 11px;
	color: var(--pls-gray);
}

.pls-hero-stars i {
	color: #f5b400;
	font-size: 10px;
}

@media (max-width: 900px) {
	.pls-hero {
		padding: 32px 20px 70px;
	}
	.pls-hero-media {
		aspect-ratio: 4 / 3;
		min-height: 420px;
		max-height: 600px;
	}
	.pls-hero-card {
		width: 220px;
		top: 20px;
		right: 20px;
	}
	.pls-hero-tabs {
		bottom: 90px;
		left: 20px;
	}
	.pls-hero-slidenav {
		left: 20px;
		right: 20px;
	}
	.pls-hero-reviews {
		flex-direction: column;
		right: 20px;
		bottom: -60px;
		gap: 12px;
	}
}

@media (max-width: 560px) {
	.pls-hero-title {
		font-size: 26px;
	}
	.pls-hero-card {
		position: static;
		width: 100%;
		margin-top: 16px;
	}
	.pls-hero-media {
		aspect-ratio: 1 / 1;
		min-height: 320px;
		max-height: 420px;
	}
}
