:root {
	--navy: #052d33;
	--teal: #073f42;
	--pine: #244f32;
	--leaf: #4e9c3f;
	--lime: #93b83d;
	--gold: #caa45b;
	--cream: #f7f4eb;
	--cream-2: #f0eee5;
	--white: #fff;
	--ink: #132629;
	--text: #5f6c6d;
	--line: #dfe6df;
	--shadow: 0 18px 55px rgba(5, 45, 51, .11);
	--radius: 26px;
	--topmenu-bg: #021e0b;
	--topmenu-booknow-bg: #fdd72c;
	--topmenu-text: #ffffff;
	--topmenu-link: #ffffff;
	--topmenu-booknow-link: #ffffff;

}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: var(--ink);
	background: #fff;
	line-height: 1.65;
}

img {
	display: block;
	width: 100%;
	height: auto;
}

a {
	text-decoration: none;
	color: inherit;
}

button,
input,
select,
textarea {
	font: inherit;
}

button {
	cursor: pointer;
}

.container {
	width: min(1180px, calc(100% - 36px));
	margin: auto;
}

#site-header,
.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	width: 100%;
}

.site-header {
	/* background: rgba(255, 255, 255, .98); */
	background: var(--topmenu-bg);
	border-bottom: 1px solid rgba(5, 45, 51, .08);
	transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.site-header.scrolled {
	background: var(--topmenu-bg);
	box-shadow: 0 10px 30px rgba(5, 45, 51, .08);
	border-bottom-color: rgba(5, 45, 51, .12);
}

.navbar {
	height: 84px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	transition: height .3s cubic-bezier(.16, 1, .3, 1);
	position: relative;
	width: 100%;
	padding-inline: 7.25vw;
}

.site-header.scrolled .navbar {
	height: 70px;
}

.logo {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.logo img {
	width: auto;
	height: 68px;
	object-fit: contain;
	transition: width .3s ease, height .3s ease;
}

.site-header.scrolled .logo img {
	width: auto;
	height: 68px;
}

.nav {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.mobile-nav-body,
.nav-links-wrapper {
	display: flex;
	align-items: center;
	gap: 4px;
	height: 100%;
}

.mobile-nav-header,
.mobile-nav-footer,
.nav-backdrop {
	display: none;
}

.nav-item {
	display: flex;
	align-items: center;
	height: 100%;
}

.nav-item.has-dropdown {
	position: relative;
}

.nav-item.has-megamenu {
	position: static;
}

.nav-item-head {
	display: flex;
	align-items: center;
	height: 100%;
}

.nav-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 10px 14px;
	font-size: 14.5px;
	font-weight: 750;
	color: var(--topmenu-text);
	border-radius: 12px;
	transition: color .2s ease, background .2s ease;
	position: relative;
	white-space: nowrap;
}

.nav-link:hover,
.nav-item:hover>.nav-item-head>.nav-link,
.nav-item.active-parent>.nav-item-head>.nav-link {
	color: var(--lime);
	background: rgba(7, 63, 66, .05);
}

.nav-link.active {
	color: var(--topmenu-text);
	background: rgba(7, 63, 66, .07);
}

.nav-link.active::after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 14px;
	right: 14px;
	height: 2.5px;
	background: var(--lime);
	border-radius: 999px;
}

.nav-badge {
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .4px;
	padding: 2px 7px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--leaf), var(--lime));
	color: #fff;
	line-height: 1.2;
}

.submenu-toggle {
	background: none;
	border: 0;
	padding: 4px;
	margin-left: -6px;
	color: var(--text);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	border-radius: 6px;
	transition: transform .25s ease, color .2s ease;
}

.submenu-toggle .chevron-icon {
	width: 14px;
	height: 14px;
	stroke-width: 2.5;
	transition: transform .25s ease;
}

.nav-item:hover .submenu-toggle,
.nav-item.is-open .submenu-toggle {
	color: var(--teal);
	transform: rotate(180deg);
}

/* Hover bridge for seamless dropdown interaction */
.has-dropdown::before,
.has-megamenu::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -15px;
	height: 20px;
	z-index: 1005;
}

/* Dropdown styling */
.dropdown-panel {
	position: absolute;
	top: calc(100% - 6px);
	left: 50%;
	transform: translateX(-50%) translateY(14px);
	width: 320px;
	background: #ffffff;
	border-radius: 20px;
	box-shadow: 0 20px 50px rgba(5, 45, 51, .15), 0 4px 16px rgba(5, 45, 51, .04);
	border: 1px solid rgba(5, 45, 51, .09);
	padding: 10px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity .25s ease, transform .25s cubic-bezier(.16, 1, .3, 1), visibility .25s;
	z-index: 1010;
}

.has-dropdown:hover>.dropdown-panel,
.has-dropdown:focus-within>.dropdown-panel,
.has-dropdown.is-open>.dropdown-panel {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateX(-50%) translateY(0);
}

.dropdown-menu-inner {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.dropdown-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 10px 12px;
	border-radius: 14px;
	transition: background .2s ease, transform .2s ease;
	text-decoration: none;
	color: var(--ink);
}

.dropdown-item:hover {
	background: var(--cream);
	transform: translateX(4px);
}

.dropdown-item.active {
	background: var(--cream);
	font-weight: 700;
}

.dropdown-icon {
	width: 38px;
	height: 38px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(7, 63, 66, .06);
	color: var(--teal);
	flex-shrink: 0;
	transition: all .2s ease;
}

.dropdown-icon .icon {
	width: 19px;
	height: 19px;
}

.dropdown-item:hover .dropdown-icon {
	background: linear-gradient(135deg, var(--teal), var(--pine));
	color: #fff;
	box-shadow: 0 6px 14px rgba(5, 45, 51, .18);
	transform: scale(1.06);
}

.dropdown-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
	flex: 1;
	min-width: 0;
}

.dropdown-title {
	font-size: 14px;
	font-weight: 750;
	color: var(--ink);
	display: flex;
	align-items: center;
	gap: 6px;
	line-height: 1.3;
}

.dropdown-desc {
	font-size: 12px;
	color: var(--text);
	line-height: 1.4;
	font-weight: 400;
}

.badge-mini {
	font-size: 9.5px;
	font-weight: 850;
	text-transform: uppercase;
	padding: 1px 6px;
	border-radius: 6px;
	background: rgba(202, 164, 91, .2);
	color: #926d1b;
	line-height: 1.2;
}

/* Mega Menu styling */
.megamenu-panel {
	position: absolute;
	top: calc(100% - 6px);
	left: 0;
	right: 0;
	width: 100%;
	background: transparent;
	padding-top: 10px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity .25s ease, transform .25s cubic-bezier(.16, 1, .3, 1), visibility .25s;
	transform: translateY(12px);
	z-index: 1010;
}

.has-megamenu:hover>.megamenu-panel,
.has-megamenu:focus-within>.megamenu-panel,
.has-megamenu.is-open>.megamenu-panel {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

.megamenu-container {
	/* width: 100%;
	max-width: 100%; */
	background: #ffffff;
	border-radius: 24px;
	box-shadow: 0 24px 60px rgba(5, 45, 51, .16), 0 6px 18px rgba(5, 45, 51, .05);
	border: 1px solid rgba(5, 45, 51, .09);
	padding: 28px 32px;
	overflow: hidden;
}

.megamenu-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr) 310px;
	gap: 32px;
	align-items: stretch;
}

.megamenu-col {
	display: flex;
	flex-direction: column;
}

.megamenu-col-header {
	padding-bottom: 12px;
	margin-bottom: 10px;
	border-bottom: 1px solid var(--line);
}

.megamenu-col-title {
	font-size: 13px;
	font-weight: 850;
	text-transform: uppercase;
	letter-spacing: .8px;
	color: var(--teal);
	margin: 0;
}

.megamenu-links {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.megamenu-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 9px 12px;
	border-radius: 14px;
	text-decoration: none;
	transition: background .2s ease, transform .2s ease;
	color: var(--ink);
}

.megamenu-item:hover {
	background: var(--cream);
	transform: translateX(4px);
}

.megamenu-item.active {
	background: var(--cream);
}

.megamenu-icon {
	width: 38px;
	height: 38px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(7, 63, 66, .06);
	color: var(--teal);
	flex-shrink: 0;
	transition: all .2s ease;
}

.megamenu-icon .icon {
	width: 19px;
	height: 19px;
}

.megamenu-item:hover .megamenu-icon {
	background: linear-gradient(135deg, var(--teal), var(--pine));
	color: #fff;
	box-shadow: 0 6px 14px rgba(5, 45, 51, .18);
	transform: scale(1.06);
}

.megamenu-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
	flex: 1;
	min-width: 0;
}

.megamenu-title {
	font-size: 14px;
	font-weight: 750;
	color: var(--ink);
	display: flex;
	align-items: center;
	gap: 6px;
	line-height: 1.3;
}

.megamenu-desc {
	font-size: 12px;
	color: var(--text);
	line-height: 1.4;
	font-weight: 400;
}

.megamenu-col-featured {
	background: linear-gradient(160deg, var(--cream), var(--cream-2));
	border-radius: 18px;
	padding: 16px;
	border: 1px solid var(--line);
	display: flex;
	flex-direction: column;
}

.megamenu-col-featured .megamenu-col-header {
	padding-bottom: 8px;
	margin-bottom: 10px;
}

.megamenu-featured-card {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.megamenu-featured-img {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	height: 125px;
	margin-bottom: 12px;
}

.megamenu-featured-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s ease;
}

.megamenu-featured-card:hover .megamenu-featured-img img {
	transform: scale(1.06);
}

.featured-badge {
	position: absolute;
	top: 8px;
	left: 8px;
	background: rgba(5, 45, 51, .85);
	backdrop-filter: blur(6px);
	color: var(--gold);
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .5px;
	padding: 3px 8px;
	border-radius: 6px;
}

.megamenu-featured-body {
	display: flex;
	flex-direction: column;
	flex: 1;
}

.megamenu-featured-body h5 {
	margin: 0 0 4px;
	font-size: 14.5px;
	font-weight: 800;
	color: var(--navy);
}

.megamenu-featured-body p {
	margin: 0 0 12px;
	font-size: 12px;
	line-height: 1.45;
	color: var(--text);
	flex: 1;
}

.featured-btn {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	background: linear-gradient(135deg, var(--teal), var(--pine));
	color: #fff;
	padding: 8px 14px;
	border-radius: 999px;
	font-size: 12.5px;
	font-weight: 800;
	text-decoration: none;
	transition: all .25s ease;
	box-shadow: 0 6px 16px rgba(5, 45, 51, .15);
}

.featured-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 22px rgba(5, 45, 51, .22);
	background: linear-gradient(135deg, var(--leaf), var(--lime));
}

.icon-bubble-sm {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: rgba(255, 255, 255, .2);
}

.icon-bubble-sm svg {
	width: 12px;
	height: 12px;
}

.nav-cta {
	display: flex;
	gap: 10px;
	align-items: center;
}

.mobile-toggle {
	display: none;
	background: none;
	border: 0;
	font-size: 24px;
	color: var(--teal);
	padding: 10px;
}

.btn {
	border: 0;
	border-radius: 999px;
	padding: 13px 20px;
	font-weight: 800;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	transition: .25s;
}

.btn:hover {
	transform: translateY(-2px);
}

.btn-primary {
	background: linear-gradient(135deg, var(--teal), var(--pine));
	color: #fff;
	box-shadow: 0 12px 26px rgba(5, 45, 51, .16);
}

.btn-accent {
	background: linear-gradient(135deg, var(--leaf), var(--lime));
	color: #fff;
}

.btn-gold {
	background: var(--gold);
	color: #fff;
}

.btn-outline {
	border: 1px solid rgba(255, 255, 255, .5);
	color: #fff;
	background: rgba(255, 255, 255, .08);
}

.btn-light {
	border: 1px solid var(--line);
	background: #fff;
	color: var(--teal);
}

.icon-bubble {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: rgba(255, 255, 255, .14);
}

svg.icon {
	width: 1em;
	height: 1em;
	fill: currentColor;
	vertical-align: -.125em;
}

.hero {
	position: relative;
	min-height: 640px;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: var(--navy);
}

.hero.small {
	min-height: 390px;
}

.hero-bg {
	position: absolute;
	inset: 0;
	background-position: center;
	background-size: cover;
	transform: scale(1.03);
}

.hero:before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(4, 37, 42, .9), rgba(5, 45, 51, .62) 50%, rgba(36, 79, 50, .28));
	z-index: 1;
}

.hero .container {
	position: relative;
	z-index: 2;
	color: #fff;
}

.hero-copy {
	max-width: 820px;
	padding: 80px 0;
}

.hero-copy .kicker {
	display: inline-flex;
	border: 1px solid rgba(255, 255, 255, .32);
	border-radius: 999px;
	padding: 7px 12px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .08em;
}

.hero h1 {
	font-size: clamp(46px, 6vw, 82px);
	line-height: 1.02;
	letter-spacing: -3px;
	margin: 18px 0;
}

.hero.small h1 {
	font-size: clamp(40px, 5vw, 64px);
}

.hero h1 span,
.hero h2 span,
.section-title span {
	color: var(--lime);
}

.hero p {
	max-width: 690px;
	font-size: 18px;
	color: rgba(255, 255, 255, .82);
}

.hero-actions {
	display: flex;
	gap: 13px;
	flex-wrap: wrap;
	margin-top: 28px;
}

.section {
	padding: 92px 0;
}

.section.alt {
	background: var(--cream);
}

.section-head {
	max-width: 760px;
	margin: 0 auto 45px;
	text-align: center;
}


.eyebrow {
	display: inline-flex;
	border: 1px solid rgb(0 0 0);
	background: rgb(147 184 61 / 0%);
	color: var(--pine);
	border-radius: 999px;
	padding: 6px 11px;
	font-size: 11px;
	font-weight: 850;
	letter-spacing: .08em;
}

.experience-home .eyebrow {
	display: inline-flex;
	border: 1px solid rgb(255 255 255);
	background: rgb(147 184 61 / 0%);
	color: var(--white);
	border-radius: 999px;
	padding: 6px 11px;
	font-size: 11px;
	font-weight: 300;
	letter-spacing: .08em;
}

.section-title {
	font-size: clamp(34px, 4vw, 54px);
	line-height: 1.12;
	letter-spacing: -2px;
	margin: 15px 0;
}

.section-head p {
	color: var(--text);
}

.grid {
	display: grid;
	gap: 24px;
}

.grid-2 {
	grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
	grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
	grid-template-columns: repeat(4, 1fr);
}

.card {
	background: #fff;
	border: 1px solid rgba(5, 45, 51, .07);
	border-radius: var(--radius);
	box-shadow: 0 8px 30px rgba(5, 45, 51, .05);
	overflow: hidden;
}

.card-body {
	padding: 24px;
}

.card h3 {
	margin: 0 0 10px;
	font-size: 23px;
}

.card p {
	color: var(--text);
}

.image-card img {
	height: 260px;
	object-fit: cover;
}

.room-card {
	position: relative;
}

.room-card img {
	height: 265px;
	object-fit: cover;
	aspect-ratio: 628 / 420;
}

.badge {
	position: absolute;
	top: 16px;
	left: 16px;
	background: #fff;
	color: var(--pine);
	border-radius: 999px;
	padding: 6px 10px;
	font-size: 11px;
	font-weight: 850;
}

.badge.right {
	left: auto;
	right: 16px;
	background: var(--lime);
	color: #fff;
}

.meta {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	color: #6b7778;
	font-size: 13px;
	margin: 12px 0;
}

.meta svg {
	color: var(--leaf);
}

.price-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 14px;
	border-top: 1px solid var(--line);
	padding-top: 18px;
	margin-top: 18px;
}

.price strong {
	font-size: 25px;
	color: var(--teal);
}

.price small {
	color: #829091;
}

.actions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.price-row .actions .btn {
	border-radius: 5px;
	padding: 5px 10px;
	font-weight: 300;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	transition: .25s;
	font-size: 15px;
}

.text-link {
	font-weight: 800;
	color: var(--leaf);
	text-decoration: underline;
	text-underline-offset: 4px;
}

.split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}

.split-copy p {
	color: var(--text);
}

.feature-image {
	border-radius: 32px;
	overflow: hidden;
	box-shadow: var(--shadow);
}

.feature-image img {
	height: 560px;
	object-fit: cover;
}

.list-check {
	display: grid;
	gap: 12px;
	padding: 0;
	list-style: none;
}

.list-check li {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	color: var(--text);
}

.list-check svg {
	color: var(--leaf);
	margin-top: 5px;
}

.amenity-card {
	text-align: center;
	padding: 32px 25px;
	min-height: 245px;
}

.amenity-icon {
	width: 78px;
	height: 78px;
	border-radius: 24px;
	border: 1px solid var(--line);
	display: grid;
	place-items: center;
	margin: 0 auto 17px;
	color: var(--leaf);
	font-size: 30px;
}

/* ===== Non-Overlapping Bento Gallery Grid Styles ===== */
.gallery-showcase-section {
	padding: 70px 0 90px;
}

.gallery-filters-container {
	display: flex;
	justify-content: center;
	margin: 24px 0 36px;
}

.gallery-filter-tabs {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
	background: #ffffff;
	padding: 8px 12px;
	border-radius: 999px;
	border: 1px solid rgba(5, 45, 51, .1);
	box-shadow: 0 8px 30px rgba(5, 45, 51, .05);
}

.gallery-filter-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: transparent;
	border: none;
	padding: 9px 20px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 750;
	color: var(--ink);
	cursor: pointer;
	transition: all .25s ease;
}

.gallery-filter-btn .filter-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(5, 45, 51, .08);
	color: var(--teal);
	border-radius: 999px;
	padding: 2px 8px;
	font-size: 11px;
	font-weight: 850;
	transition: all .25s ease;
}

.gallery-filter-btn:hover {
	color: var(--teal);
	background: rgba(5, 45, 51, .04);
}

.gallery-filter-btn.active {
	background: var(--teal);
	color: #ffffff;
	box-shadow: 0 6px 18px rgba(5, 45, 51, .2);
}

.gallery-filter-btn.active .filter-count {
	background: var(--lime);
	color: #031e22;
}

/* Dynamic Balanced Bento Gallery Grid (2-card & 3-card alternating layout) */
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 22px;
	width: 100%;
	align-items: start;
	margin: 0;
	padding: 0;
}

.gallery-item {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	background: #031e22;
	box-shadow: 0 10px 30px rgba(5, 45, 51, .09);
	cursor: pointer;
	height: 320px;
	width: 100%;
	margin: 0;
	vertical-align: top;
	transition: transform .35s cubic-bezier(.16, 1, .3, 1), box-shadow .35s ease;
}

.gallery-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 45px rgba(5, 45, 51, .16);
}

/* Symmetrical Column Span Classes */
.gallery-item.col-12 {
	grid-column: span 12;
}

.gallery-item.col-6 {
	grid-column: span 6;
}

.gallery-item.col-4 {
	grid-column: span 4;
}

.gallery-card-img-wrap {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-radius: 24px;
}

.gallery-card-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 24px;
	transition: transform .55s cubic-bezier(.16, 1, .3, 1);
}

.gallery-item:hover .gallery-card-img-wrap img {
	transform: scale(1.05);
}

.gallery-card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(3, 30, 34, 0.42) 0%, rgba(3, 30, 34, 0.08) 35%, rgba(3, 30, 34, 0.92) 100%);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 22px;
	border-radius: 24px;
	pointer-events: none;
	transition: background .35s ease;
}

.gallery-card-topbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.gallery-card-tag {
	background: rgba(3, 30, 34, 0.85);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	color: #ffffff;
	border-radius: 999px;
	padding: 4px 12px;
	font-size: 10.5px;
	font-weight: 850;
	letter-spacing: .08em;
	text-transform: uppercase;
	border: 1px solid rgba(255, 255, 255, 0.22);
}

.gallery-zoom-btn {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: #ffffff;
	display: grid;
	place-items: center;
	transition: all .25s ease;
	pointer-events: auto;
	cursor: pointer;
}

.gallery-item:hover .gallery-zoom-btn {
	background: var(--lime);
	color: #031e22;
	transform: scale(1.08);
	border-color: var(--lime);
}

.gallery-card-caption {
	color: #ffffff;
}

.gallery-card-caption h4 {
	font-size: 18px;
	font-weight: 800;
	margin: 0 0 5px;
	letter-spacing: -0.4px;
	color: #ffffff;
	line-height: 1.25;
}

.gallery-card-caption p {
	font-size: 13px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.84);
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Gallery Pagination & Load More Container */
.gallery-pagination-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-top: 50px;
	gap: 16px;
}

.btn-load-more {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 13px 32px;
	font-size: 14.5px;
	font-weight: 800;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--pine), var(--teal));
	color: #ffffff;
	box-shadow: 0 8px 26px rgba(5, 45, 51, .2);
	transition: all .25s ease;
	cursor: pointer;
	border: none;
}

.btn-load-more:hover {
	background: linear-gradient(135deg, var(--leaf), var(--lime));
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(36, 79, 50, .3);
}

.btn-load-more svg {
	transition: transform .25s ease;
}

.btn-load-more:hover svg {
	transform: translateY(2px);
}

.load-more-remaining {
	background: rgba(255, 255, 255, 0.25);
	color: #ffffff;
	padding: 3px 9px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 800;
}

.gallery-all-loaded-msg {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--teal);
	font-size: 14px;
	font-weight: 750;
	background: rgba(147, 184, 61, .12);
	border: 1px solid rgba(147, 184, 61, .3);
	border-radius: 999px;
	padding: 8px 22px;
}

/* Lightbox Modal Styles */
.gallery-lightbox {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.lightbox-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(3, 30, 34, 0.94);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
}

.lightbox-container {
	position: relative;
	z-index: 2;
	max-width: 1040px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.lightbox-close-btn {
	position: absolute;
	top: -50px;
	right: 0;
	background: rgba(255, 255, 255, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.25);
	color: #ffffff;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	cursor: pointer;
	transition: all .2s ease;
}

.lightbox-close-btn:hover {
	background: var(--lime);
	color: #031e22;
	transform: scale(1.1);
}

.lightbox-nav-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(3, 30, 34, 0.8);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #ffffff;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	cursor: pointer;
	transition: all .25s ease;
	z-index: 10;
}

.lightbox-prev {
	left: -60px;
}

.lightbox-next {
	right: -60px;
}

.lightbox-nav-btn:hover {
	background: var(--teal);
	transform: translateY(-50%) scale(1.08);
	border-color: var(--teal);
}

.lightbox-content-box {
	background: #031e22;
	border-radius: 24px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.15);
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.6);
	width: 100%;
}

.lightbox-image-wrap {
	width: 100%;
	height: 520px;
	background: #010f11;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lightbox-image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.lightbox-caption-bar {
	padding: 20px 26px;
	background: #031e22;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}

.lightbox-badge {
	display: inline-flex;
	background: var(--lime);
	color: #031e22;
	border-radius: 999px;
	padding: 3px 10px;
	font-size: 10.5px;
	font-weight: 850;
	letter-spacing: .08em;
	margin-bottom: 6px;
}

.lightbox-title {
	font-size: 20px;
	font-weight: 800;
	color: #ffffff;
	margin: 0 0 4px;
}

.lightbox-desc {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.78);
	margin: 0;
}

.lightbox-caption-right {
	display: flex;
	align-items: center;
	gap: 16px;
}

.lightbox-counter {
	font-size: 13.5px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.65);
}

/* Responsiveness for Luxury Gallery */
@media (max-width: 1140px) {
	.lightbox-prev {
		left: 12px;
	}

	.lightbox-next {
		right: 12px;
	}
}

@media (max-width: 960px) {
	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 18px;
	}

	.gallery-item,
	.gallery-item.col-12,
	.gallery-item.col-6,
	.gallery-item.col-4 {
		grid-column: span 1;
		height: 280px;
	}

	.lightbox-image-wrap {
		height: 380px;
	}
}

@media (max-width: 600px) {
	.gallery-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.gallery-item,
	.gallery-item.col-12,
	.gallery-item.col-6,
	.gallery-item.col-4 {
		grid-column: span 1;
		height: 250px;
		border-radius: 20px;
	}

	.gallery-card-overlay {
		padding: 16px;
	}

	.gallery-card-caption h4 {
		font-size: 16px;
	}

	.gallery-card-caption p {
		font-size: 12px;
	}

	.gallery-filter-tabs {
		border-radius: 20px;
		width: 100%;
	}

	.gallery-filter-btn {
		font-size: 13px;
		padding: 7px 14px;
		flex: 1 1 auto;
		justify-content: center;
	}

	.lightbox-image-wrap {
		height: 260px;
	}

	.lightbox-caption-bar {
		padding: 16px;
	}

	.lightbox-title {
		font-size: 17px;
	}

	.lightbox-desc {
		font-size: 12.5px;
	}

	.btn-load-more {
		width: 100%;
		justify-content: center;
		padding: 12px 20px;
	}
}

.offer-card {
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	min-height: 360px;
}

.offer-card img {
	height: 100%;
	object-fit: cover;
}

.offer-card .card-body {
	padding: 38px;
}

.offer-value {
	font-size: 46px;
	font-weight: 900;
	color: var(--leaf);
	line-height: 1;
}

.stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.stat {
	padding: 26px;
	border-radius: 22px;
	background: linear-gradient(145deg, var(--teal), var(--pine));
	color: #fff;
}

.stat strong {
	display: block;
	font-size: 40px;
}

.stat span {
	color: rgba(255, 255, 255, .72);
}

.testimonial {
	padding: 30px;
}

.stars {
	color: var(--gold);
	letter-spacing: 2px;
}

.avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--teal);
	color: #fff;
	display: grid;
	place-items: center;
	font-weight: 850;
}

.reviewer {
	display: flex;
	gap: 12px;
	align-items: center;
	margin-top: 22px;
}

.blog-card img {
	height: 230px;
	object-fit: cover;
}

.blog-meta {
	font-size: 12px;
	color: #7d8889;
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

.blog-card h3 {
	line-height: 1.35;
}

.article {
	max-width: 850px;
	margin: auto;
}

.article .lead-img {
	height: 480px;
	object-fit: cover;
	border-radius: 30px;
	margin: 26px 0;
}

.article h2 {
	margin-top: 38px;
}

.article p,
.article li {
	color: var(--text);
}

.quote {
	border-left: 4px solid var(--lime);
	padding: 18px 22px;
	background: var(--cream);
	border-radius: 0 18px 18px 0;
	font-weight: 650;
}

.faq {
	max-width: 900px;
	margin: auto;
	display: grid;
	gap: 14px;
}

.faq-item {
	border: 1px solid var(--line);
	border-radius: 18px;
	background: #fff;
	overflow: hidden;
}

.faq-q {
	width: 100%;
	border: 0;
	background: #fff;
	text-align: left;
	padding: 20px 22px;
	font-weight: 800;
	display: flex;
	justify-content: space-between;
	gap: 20px;
	color: var(--ink);
}

.faq-a {
	max-height: 0;
	overflow: hidden;
	transition: .28s;
	padding: 0 22px;
	color: var(--text);
}

.faq-item.open .faq-a {
	max-height: 240px;
	padding-bottom: 20px;
}

.faq-item.open .faq-q {
	color: var(--pine);
}

.form-card {
	background: var(--cream);
	border-radius: 30px;
	padding: 34px;
	border: 1px solid rgba(5, 45, 51, .07);
}

.form-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.field {
	display: grid;
	gap: 8px;
	font-weight: 750;
}

.field.full {
	grid-column: 1/-1;
}

input,
select,
textarea {
	width: 100%;
	border: 1px solid #d7dfd9;
	background: #fff;
	border-radius: 14px;
	padding: 14px 15px;
	outline: none;
	color: var(--ink);
}

textarea {
	min-height: 140px;
	resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
	border-color: var(--leaf);
	box-shadow: 0 0 0 3px rgba(78, 156, 63, .10);
}

.contact-list {
	display: grid;
	gap: 18px;
}

.contact-line {
	display: flex;
	gap: 14px;
}

.contact-icon {
	width: 46px;
	height: 46px;
	border-radius: 14px;
	background: var(--cream);
	color: var(--leaf);
	display: grid;
	place-items: center;
	flex: 0 0 auto;
}

.contact-line strong,
.contact-line small {
	display: block;
}

.contact-line small {
	color: #879091;
}

.policy {
	max-width: 900px;
	margin: auto;
}

.policy h2 {
	margin-top: 34px;
}

.policy p,
.policy li {
	color: var(--text);
}

.cta-band {
	background: linear-gradient(135deg, var(--teal), var(--pine));
	color: #fff;
	border-radius: 32px;
	padding: 40px;
	display: flex;
	justify-content: space-between;
	gap: 30px;
	align-items: center;
}

.cta-band h2 {
	margin: 0;
	font-size: 34px;
}

.cta-band p {
	margin: 8px 0 0;
	color: rgba(255, 255, 255, .75);
}

.site-footer {
	background: linear-gradient(145deg, #031e22, var(--teal), var(--pine));
	color: #fff;
	padding: 70px 0 24px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr repeat(3, 1fr);
	gap: 45px;
}

.footer-logo {
	width: 260px;
	height: 96px;
	object-fit: contain;
	/* background: #fff; */
	/* border-radius: 50%; */
	/* padding: 5px 5px 5px 0; */
}

.footer-grid p,
.footer-grid a {
	color: rgba(255, 255, 255, .72);
}

.footer-col {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-col h4 {
	margin: 0 0 10px;
}

.socials {
	display: flex;
	gap: 10px;
	margin-top: 14px;
}

.socials a {
	width: 38px;
	height: 38px;
	border: 1px solid rgba(255, 255, 255, .22);
	border-radius: 50%;
	display: grid;
	place-items: center;
	color: #fff;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	border-top: 1px solid rgba(255, 255, 255, .14);
	padding-top: 20px;
	margin-top: 40px;
	font-size: 12px;
	color: rgba(255, 255, 255, .55);
}

.notice {
	padding: 12px 14px;
	border-radius: 14px;
	background: #eaf3e6;
	color: var(--pine);
	font-weight: 700;
	display: none;
	margin-top: 14px;
}

.notice.show {
	display: block;
}

.breadcrumbs {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	color: rgba(255, 255, 255, .72);
	font-size: 13px;
}

.breadcrumbs a {
	color: #fff;
}

.table-wrap {
	overflow: auto;
}

table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	border-radius: 18px;
	overflow: hidden;
}

th,
td {
	padding: 15px;
	border-bottom: 1px solid var(--line);
	text-align: left;
}

th {
	background: var(--cream);
}

.back-top {
	position: fixed;
	right: 24px;
	bottom: 24px;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--lime);
	color: #fff;
	z-index: 99;
	box-shadow: 0 8px 24px rgba(5, 45, 51, .18);
	opacity: 0;
	visibility: hidden;
	transform: translateY(16px);
	transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.25s ease, box-shadow 0.25s ease;
	cursor: pointer;
	text-decoration: none;
}

.back-top.visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.back-top:hover {
	background: var(--leaf);
	color: #fff;
	transform: translateY(-3px);
	box-shadow: 0 12px 28px rgba(5, 45, 51, .28);
}

.back-top:active {
	transform: translateY(0);
}

.back-top svg {
	display: block;
	transition: transform 0.2s ease;
}

.back-top:hover svg {
	transform: translateY(-2px);
}


@media(max-width:1020px) {

	.grid-3,
	.grid-4 {
		grid-template-columns: repeat(2, 1fr);
	}

	.split,
	.offer-card {
		grid-template-columns: 1fr;
	}

	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
		grid-auto-rows: 220px;
	}

	.gallery-item {
		grid-column: auto !important;
		grid-row: auto !important;
	}

	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media(max-width:700px) {
	.section {
		padding: 72px 0;
	}

	.hero {
		min-height: 560px;
	}

	.hero.small {
		min-height: 330px;
	}

	.hero-copy {
		padding: 58px 0;
	}

	.hero h1 {
		letter-spacing: -2px;
	}

	.grid-2,
	.grid-3,
	.grid-4,
	.form-grid,
	.stats {
		grid-template-columns: 1fr;
	}

	.field.full {
		grid-column: auto;
	}

	.gallery-grid {
		grid-template-columns: 1fr;
	}

	.feature-image img {
		height: 390px;
	}

	.room-card img,
	.image-card img {
		height: 230px;
	}

	.offer-card img {
		height: 260px;
	}

	.footer-grid {
		grid-template-columns: 1fr;
	}

	.footer-bottom {
		flex-direction: column;
	}

	.cta-band {
		flex-direction: column;
		align-items: flex-start;
	}

	.price-row {
		align-items: flex-start;
		flex-direction: column;
	}
}


/* ===== Premium Home + GSAP/Swiper Enhancements ===== */
main {
	overflow-x: clip;
}

[data-gsap] {
	will-change: transform, opacity;
}

.premium-section {
	position: relative;
	overflow: hidden;
}

.premium-section:before {
	content: "";
	position: absolute;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(147, 184, 61, .10), rgba(147, 184, 61, 0) 68%);
	pointer-events: none;
	top: -180px;
	right: -160px;
}

.hero-slider {
	height: calc(100vh - 84px);
	min-height: 680px;
	position: relative;
	background: var(--navy);
}

.hero-swiper,
.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide {
	height: 100%;
}

.hero-slide {
	position: relative;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.hero-slide-bg {
	position: absolute;
	inset: -4%;
	background-size: cover;
	background-position: center;
	transform: scale(1.04);
}

.hero-slide:after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(3, 30, 34, .90) 0%, rgba(5, 45, 51, .70) 45%, rgba(36, 79, 50, .32) 75%, rgba(36, 79, 50, .16) 100%);
}

.hero-slide-content {
	position: relative;
	z-index: 3;
	color: #fff;
	max-width: 820px;
}

.hero-slide-content .eyebrow {
	color: #fff;
	border-color: rgba(255, 255, 255, .30);
	background: rgba(255, 255, 255, .06);
}

.hero-slide-content h1,
.hero-slide-content h2 {
	font-size: clamp(50px, 6.3vw, 88px);
	line-height: 1.01;
	letter-spacing: -3.5px;
	margin: 18px 0 20px;
}

.hero-slide-content h1 span,
.hero-slide-content h2 span {
	color: var(--lime);
}

.hero-slide-content p {
	max-width: 680px;
	color: rgba(255, 255, 255, .82);
	font-size: 18px;
}

.hero-swiper .swiper-pagination {
	bottom: 32px !important;
}

.hero-swiper .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: #fff;
	opacity: .55;
}

.hero-swiper .swiper-pagination-bullet-active {
	width: 34px;
	border-radius: 999px;
	background: var(--lime);
	opacity: 1;
}

.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .10);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, .15);
	color: #fff;
}

.hero-swiper .swiper-button-next:after,
.hero-swiper .swiper-button-prev:after {
	font-size: 18px;
}

.hero-bottom-card {
	position: absolute;
	z-index: 5;
	right: max(20px, calc((100vw - 1180px)/2));
	bottom: 38px;
	width: min(360px, calc(100vw - 40px));
	background: rgba(255, 255, 255, .94);
	border-radius: 24px;
	padding: 18px 20px;
	box-shadow: 0 20px 55px rgba(0, 0, 0, .20);
	display: flex;
	align-items: center;
	gap: 14px;
}

.hero-bottom-card strong {
	display: block;
	color: var(--teal);
	font-size: 17px;
}

.hero-bottom-card small {
	color: var(--text);
}

.hero-bottom-card .amenity-icon {
	width: 50px;
	height: 50px;
	margin: 0;
	border-radius: 16px;
	flex: 0 0 auto;
}

.home-about-image {
	position: relative;
}

.home-about-image .feature-image img {
	height: 640px;
}

.logo-float {
	position: absolute;
	top: 26px;
	right: 26px;
	width: 110px;
	height: 110px;
	border-radius: 50%;
	background: transparent;
	padding: 8px;
	box-shadow: var(--shadow);
	z-index: 3;
}

.logo-float img {
	height: 100%;
	object-fit: contain;
}

.property-note {
	position: absolute;
	left: 26px;
	right: 26px;
	bottom: 26px;
	background: rgba(5, 45, 51, .88);
	backdrop-filter: blur(12px);
	color: #fff;
	border-radius: 20px;
	padding: 18px 20px;
	font-weight: 650;
	z-index: 3;
}

.home-room-grid .room-card {
	transition: transform .35s ease, box-shadow .35s ease;
}

.home-room-grid .room-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 24px 60px rgba(5, 45, 51, .13);
}

.home-room-grid .room-card img {
	transition: transform .5s ease;
}

.home-room-grid .room-card:hover img {
	transform: scale(1.05);
}

/* ===== New Facilities / Services Showcase Section ===== */
.facilities-section {
	padding: 100px 0;
	background: #ffffff;
}

.facilities-grid {
	display: flex;
	flex-direction: column;
	gap: 60px;
	margin-top: 52px;
}

.facility-row {
	display: grid;
	grid-template-columns: 1.12fr 1fr;
	gap: 56px;
	align-items: center;
}

.facility-row.reverse {
	grid-template-columns: 1fr 1.12fr;
}

.facility-row.reverse .facility-media {
	order: 2;
}

.facility-row.reverse .facility-content {
	order: 1;
}

.facility-media {
	position: relative;
	height: 330px;
	border-radius: 28px;
	overflow: hidden;
	background: var(--cream);
	box-shadow: 0 16px 45px rgba(5, 45, 51, .09);
}

.facility-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .6s cubic-bezier(.16, 1, .3, 1);
}

.facility-row:hover .facility-media img {
	transform: scale(1.04);
}

/* Facility Content */
.facility-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.facility-tag {
	display: inline-flex;
	align-items: center;
	border: 1px solid rgba(5, 45, 51, .15);
	background: rgba(147, 184, 61, .07);
	color: var(--pine);
	border-radius: 999px;
	padding: 6px 14px;
	font-size: 11px;
	font-weight: 850;
	letter-spacing: .08em;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.facility-content h3 {
	font-size: clamp(32px, 3.4vw, 44px);
	font-weight: 800;
	letter-spacing: -1.5px;
	line-height: 1.12;
	color: var(--ink);
	margin: 0 0 14px;
}

.facility-content p {
	font-size: 16.5px;
	line-height: 1.65;
	color: var(--text);
	margin: 0 0 22px;
	max-width: 520px;
}

.facility-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 15px;
	font-weight: 800;
	color: var(--leaf);
	text-decoration: none;
	transition: all .25s ease;
}

.facility-link svg {
	width: 15px;
	height: 15px;
	transition: transform .25s ease;
}

.facility-link:hover {
	color: var(--teal);
	transform: translateX(4px);
}

.facility-link:hover svg {
	transform: translate(2px, -2px);
}



.overlap-home {
	position: relative;
	min-height: 620px;
	display: flex;
	align-items: center;
	background-size: cover;
	background-position: center;
}

.overlap-home:before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(3, 30, 34, .86), rgba(5, 45, 51, .35));
}

.overlap-home .container {
	position: relative;
	z-index: 2;
}

.overlap-home h2 {
	font-size: clamp(44px, 5.4vw, 76px);
	max-width: 850px;
	color: #fff;
	line-height: 1.05;
	margin: 15px 0 26px;
}

.overlap-box {
	margin-left: auto;
	width: min(440px, 100%);
	background: #fff;
	border-radius: 30px;
	padding: 30px;
	box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
}

.overlap-box .offer-value {
	margin: 10px 0;
}

.home-amenities .amenity-card {
	transition: .35s;
	position: relative;
	overflow: hidden;
}

.home-amenities .amenity-card:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--leaf), var(--lime));
	transform: scaleX(0);
	transform-origin: left;
	transition: .35s;
}

.home-amenities .amenity-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow);
}

.home-amenities .amenity-card:hover:after {
	transform: scaleX(1);
}

.experience-home {
	position: relative;
	background: #031e22;
	color: #fff;
	overflow: hidden;
	padding: 95px 0;
}

.experience-home-bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(3, 30, 34, .95) 0%, rgba(3, 30, 34, .90) 55%, rgba(5, 45, 51, .84) 100%), url('assets/slider-8.jpg') center/cover no-repeat;
}

.experience-home .container {
	position: relative;
	z-index: 2;
}

.experience-layout {
	display: grid;
	grid-template-columns: 1fr 1.08fr;
	gap: 56px;
	align-items: center;
}

.experience-media {
	position: relative;
	border-radius: 28px;
	overflow: hidden;
	height: 100%;
	min-height: 490px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
}

.experience-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 28px;
	transition: transform .6s cubic-bezier(.16, 1, .3, 1);
}

.experience-home:hover .experience-media img {
	transform: scale(1.03);
}

.experience-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.experience-content .eyebrow {
	border: 1px solid rgba(255, 255, 255, .25);
	background: rgba(255, 255, 255, .08);
	color: #ffffff;
	padding: 6px 14px;
	font-size: 11px;
	font-weight: 850;
	letter-spacing: .08em;
	border-radius: 999px;
	margin-bottom: 14px;
}

.experience-title {
	font-size: clamp(34px, 3.8vw, 52px);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -1.8px;
	color: #ffffff;
	margin: 0 0 18px;
}

.experience-title span {
	color: var(--lime);
}

.experience-content p {
	font-size: 16px;
	line-height: 1.62;
	color: rgba(255, 255, 255, .78);
	margin: 0 0 14px;
	max-width: 540px;
}

.experience-actions {
	margin-top: 8px;
	margin-bottom: 4px;
}

.experience-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--lime);
	color: #031e22;
	border-radius: 999px;
	padding: 10px 22px;
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
	transition: all .25s ease;
	box-shadow: 0 6px 20px rgba(147, 184, 61, .25);
}

.experience-btn svg {
	transition: transform .25s ease;
}

.experience-btn:hover {
	background: var(--leaf);
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(36, 79, 50, .4);
}

.experience-btn:hover svg {
	transform: translate(2px, -2px);
}

.experience-divider {
	width: 100%;
	margin: 18px 0 0;
}

.experience-stats-inline {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	width: 100%;
}

.exp-stat-item {
	display: flex;
	flex-direction: column;
	gap: 3px;
	border-top: 1px solid rgba(255, 255, 255, .18);
	padding-top: 20px;
}

.exp-stat-item strong {
	font-size: clamp(30px, 3.2vw, 44px);
	font-weight: 600;
	color: #ffffff;
	line-height: 1.05;
	letter-spacing: -1px;
}

.exp-stat-item span {
	font-size: 13.5px;
	font-weight: 500;
	color: rgba(255, 255, 255, .72);
	letter-spacing: .15px;
}

.review-swiper {
	padding: 8px 4px 55px;
}

.review-card {
	background: #fff;
	border-radius: 28px;
	padding: 32px;
	border: 1px solid rgba(5, 45, 51, .07);
	height: auto;
}

.review-card p {
	font-size: 17px;
	line-height: 1.8;
	color: #445354;
}

.review-swiper .swiper-pagination {
	bottom: 4px !important;
}

.review-swiper .swiper-pagination-bullet-active {
	background: var(--lime);
}

.review-person {
	display: flex;
	align-items: center;
	gap: 13px;
	margin-top: 24px;
}

.review-avatar {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: linear-gradient(135deg, var(--teal), var(--pine));
	color: #fff;
	font-weight: 850;
}

.review-person small {
	display: block;
	color: #879091;
}

.home-blog-grid .blog-card {
	transition: .35s;
}

.home-blog-grid .blog-card:hover {
	transform: translateY(-7px);
	box-shadow: var(--shadow);
}

.home-contact-strip {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	margin-bottom: 36px;
}

.home-contact-item {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	padding: 20px;
	border-radius: 20px;
	background: var(--cream);
	border: 1px solid var(--line);
}

.home-contact-item .contact-icon {
	background: #fff;
}

.home-booking-grid {
	display: grid;
	grid-template-columns: .9fr 1.1fr;
	gap: 48px;
	align-items: stretch;
}

.home-contact-panel {
	background: linear-gradient(145deg, var(--teal), var(--pine));
	color: #fff;
	border-radius: 32px;
	padding: 38px;
	position: relative;
	overflow: hidden;
}

.home-contact-panel:after {
	content: "";
	position: absolute;
	width: 260px;
	height: 260px;
	border-radius: 50%;
	right: -100px;
	bottom: -100px;
	background: rgba(147, 184, 61, .15);
}

.home-contact-panel p {
	color: rgba(255, 255, 255, .76);
}

.home-contact-panel .contact-line strong {
	color: #fff;
}

.home-contact-panel .contact-line small {
	color: rgba(255, 255, 255, .62);
}

.home-contact-panel .contact-icon {
	background: rgba(255, 255, 255, .09);
	color: var(--lime);
}

.home-booking-grid .form-card {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.gsap-line {
	overflow: hidden;
}

@media(max-width:1020px) {
	.hero-slider {
		height: auto;
		min-height: 720px;
	}

	.hero-slide {
		min-height: 720px;
	}

	.hero-bottom-card {
		display: none;
	}

	.facilities-section {
		padding: 80px 0;
	}

	.facilities-grid {
		gap: 50px;
	}

	.facility-row,
	.facility-row.reverse {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.facility-row.reverse .facility-media {
		order: 1;
	}

	.facility-row.reverse .facility-content {
		order: 2;
	}

	.facility-media {
		height: 300px;
		border-radius: 24px;
	}

	.experience-home {
		padding: 75px 0;
	}

	.experience-layout {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.experience-media {
		height: 380px;
		min-height: 380px;
	}

	.home-booking-grid {
		grid-template-columns: 1fr;
	}

	.home-contact-strip {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media(max-width:700px) {

	.hero-slider,
	.hero-slide {
		min-height: 650px;
	}

	.hero-swiper .swiper-button-next,
	.hero-swiper .swiper-button-prev {
		display: none;
	}

	.hero-slide-content h1,
	.hero-slide-content h2 {
		font-size: 46px;
		letter-spacing: -2px;
	}

	.facilities-section {
		padding: 60px 0;
	}

	.facilities-grid {
		gap: 40px;
	}

	.facility-media {
		height: 230px;
		border-radius: 20px;
	}

	.experience-home {
		padding: 55px 0;
	}

	.experience-media {
		height: 270px;
		min-height: 270px;
		border-radius: 20px;
	}

	.experience-title {
		font-size: 32px;
		letter-spacing: -1.2px;
	}

	.experience-stats-inline {
		gap: 12px;
	}

	.exp-stat-item strong {
		font-size: 25px;
	}

	.exp-stat-item span {
		font-size: 11.5px;
	}

	.home-contact-strip {
		grid-template-columns: 1fr;
	}

	.home-about-image .feature-image img {
		height: 430px;
	}
}

/* Mobile & Tablet Navigation Drawer */
@media (max-width: 1080px) {
	.navbar {
		height: 74px;
		gap: 16px;
	}

	.logo img {
		width: auto;
		height: 54px;
	}

	.mobile-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		background: none;
		border: 0;
		font-size: 24px;
		color: var(--teal);
		padding: 8px;
		cursor: pointer;
		border-radius: 10px;
		transition: background .2s;
	}

	.mobile-toggle:hover {
		background: rgba(7, 63, 66, .06);
	}

	.desktop-book-btn {
		display: none;
	}

	.nav-backdrop {
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		width: 100vw;
		height: 100vh;
		height: 100dvh;
		background: rgba(5, 45, 51, .65);
		backdrop-filter: blur(8px);
		-webkit-backdrop-filter: blur(8px);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: opacity .35s ease, visibility .35s ease;
		z-index: 99998;
	}

	.nav-backdrop.open {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	.nav {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		width: min(390px, 88vw);
		height: 100vh;
		height: 100dvh;
		background: #ffffff;
		box-shadow: -10px 0 50px rgba(5, 45, 51, .3);
		transform: translateX(105%);
		transition: transform .35s cubic-bezier(.16, 1, .3, 1), visibility .35s;
		z-index: 99999;
		display: flex;
		flex-direction: column;
		overflow: hidden;
		padding: 0;
		visibility: hidden;
		pointer-events: none;
	}

	.nav.open {
		transform: translateX(0);
		visibility: visible;
		pointer-events: auto;
	}

	.mobile-nav-header {
		flex: 0 0 auto;
		background: #ffffff;
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 16px 20px;
		border-bottom: 1px solid var(--line);
		box-shadow: 0 4px 16px rgba(5, 45, 51, .04);
		z-index: 10;
	}

	.mobile-logo {
		display: flex;
		align-items: center;
		gap: 10px;
		min-width: 0;
		flex: 1;
		margin-right: 8px;
	}

	.mobile-logo img {
		width: 34px;
		height: 34px;
		object-fit: contain;
		flex-shrink: 0;
	}

	.mobile-brand-title {
		font-size: 13.5px;
		font-weight: 800;
		color: var(--teal);
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.mobile-close-btn {
		background: var(--cream);
		border: 1px solid var(--line);
		width: 36px;
		height: 36px;
		min-width: 36px;
		border-radius: 50%;
		display: grid;
		place-items: center;
		color: var(--ink);
		cursor: pointer;
		flex-shrink: 0;
		transition: all .2s;
	}

	.mobile-close-btn:hover {
		background: var(--teal);
		color: #fff;
		border-color: var(--teal);
	}

	.mobile-nav-body {
		flex: 1 1 auto;
		overflow-y: auto;
		overscroll-behavior: contain;
		padding: 16px 20px;
		display: flex;
		flex-direction: column;
		width: 100%;
	}

	.nav-links-wrapper {
		display: flex;
		flex-direction: column;
		gap: 4px;
		width: 100%;
		height: auto;
	}

	.nav-item {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
		height: auto;
		border-bottom: 1px solid rgba(5, 45, 51, .06);
		padding-bottom: 4px;
		margin-bottom: 4px;
	}

	.nav-item:last-child {
		border-bottom: 0;
	}

	.nav-item-head {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		height: auto;
	}

	.nav-link {
		padding: 11px 10px;
		font-size: 15px;
		font-weight: 750;
		flex: 1;
		border-radius: 10px;
		color: var(--topmenu-bg);
	}

	.nav-link.active::after {
		display: none;
	}

	.nav-link.active {
		background: rgba(7, 63, 66, .08);
		color: var(--teal);
		border-left: 3px solid var(--lime);
		border-radius: 4px 10px 10px 4px;
	}

	.submenu-toggle {
		padding: 10px 14px;
		margin-left: 0;
		color: var(--teal);
	}

	.submenu-toggle .chevron-icon {
		width: 16px;
		height: 16px;
		transition: transform .25s ease;
	}

	.nav-item.is-open>.nav-item-head .submenu-toggle .chevron-icon {
		transform: rotate(180deg);
	}

	.has-dropdown::before,
	.has-megamenu::before {
		display: none;
	}

	.dropdown-panel,
	.megamenu-panel {
		position: static;
		transform: none;
		width: 100%;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		box-shadow: none;
		border: 0;
		padding: 0;
		background: transparent;
		display: none;
		overflow: visible;
	}

	.nav-item.is-open>.dropdown-panel,
	.nav-item.is-open>.megamenu-panel {
		display: block;
		animation: mobileAccordion .25s ease forwards;
	}

	@keyframes mobileAccordion {
		from {
			opacity: 0;
			transform: translateY(-4px);
		}

		to {
			opacity: 1;
			transform: translateY(0);
		}
	}

	.nav .megamenu-container,
	.nav .dropdown-menu-inner {
		background: var(--cream);
		border-radius: 14px;
		padding: 10px;
		margin: 6px 0 10px;
		border: 1px solid var(--line);
		box-shadow: inset 0 2px 6px rgba(5, 45, 51, .02);
		width: 100% !important;
		max-width: 100% !important;
	}

	.megamenu-grid {
		display: flex;
		flex-direction: column;
		gap: 12px;
	}

	.megamenu-col {
		display: flex;
		flex-direction: column;
		gap: 4px;
	}

	.megamenu-col-header {
		padding: 2px 2px 5px;
		margin-bottom: 4px;
		border-bottom: 1px solid rgba(5, 45, 51, .08);
	}

	.megamenu-col-title {
		font-size: 11px;
		font-weight: 800;
		text-transform: uppercase;
		letter-spacing: .5px;
		color: var(--leaf);
	}

	.megamenu-links {
		display: flex;
		flex-direction: column;
		gap: 4px;
	}

	.megamenu-item,
	.dropdown-item {
		display: flex;
		align-items: center;
		gap: 10px;
		padding: 8px 10px;
		background: #ffffff;
		border: 1px solid rgba(5, 45, 51, .06);
		border-radius: 12px;
		transition: all .2s ease;
	}

	.megamenu-item:active,
	.dropdown-item:active {
		background: rgba(7, 63, 66, .06);
		transform: scale(.99);
	}

	.megamenu-icon,
	.dropdown-icon {
		width: 32px;
		height: 32px;
		min-width: 32px;
		border-radius: 9px;
		background: var(--cream);
		display: grid;
		place-items: center;
		color: var(--teal);
		border: 1px solid var(--line);
	}

	.megamenu-text,
	.dropdown-text {
		display: flex;
		flex-direction: column;
		min-width: 0;
		flex: 1;
	}

	.megamenu-title,
	.dropdown-title {
		font-size: 13.5px;
		font-weight: 750;
		color: var(--ink);
		display: flex;
		align-items: center;
		gap: 6px;
	}

	.megamenu-desc,
	.dropdown-desc {
		font-size: 11.5px;
		color: #718082;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.megamenu-col-featured {
		background: #ffffff;
		border: 1px solid var(--line);
		border-radius: 14px;
		padding: 10px;
		margin-top: 2px;
	}

	.megamenu-featured-card {
		display: flex;
		flex-direction: column;
		gap: 8px;
	}

	.megamenu-featured-img {
		height: 100px;
		border-radius: 10px;
		overflow: hidden;
		position: relative;
	}

	.megamenu-featured-img img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.megamenu-featured-body h5 {
		margin: 4px 0 2px;
		font-size: 13.5px;
		font-weight: 800;
		color: var(--teal);
	}

	.megamenu-featured-body p {
		font-size: 11.5px;
		color: #718082;
		margin: 0 0 8px;
		line-height: 1.35;
	}

	.featured-btn {
		display: inline-flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		padding: 8px 12px;
		font-size: 12.5px;
		font-weight: 750;
		background: var(--navy);
		color: #ffffff;
		border-radius: 8px;
	}

	.mobile-nav-footer {
		flex: 0 0 auto;
		background: #ffffff;
		padding: 14px 20px 18px;
		border-top: 1px solid var(--line);
		display: flex;
		flex-direction: column;
		gap: 10px;
		z-index: 10;
		box-shadow: 0 -4px 14px rgba(5, 45, 51, .04);
	}

	.btn-mobile-book {
		width: 100%;
		padding: 13px;
		font-size: 15px;
	}

	.mobile-contact-info {
		display: flex;
		flex-direction: column;
		gap: 6px;
		font-size: 12.5px;
		color: var(--text);
	}

	.mobile-contact-info p {
		margin: 0;
		display: flex;
		align-items: center;
		gap: 8px;
	}

	.contact-icon-mini {
		color: var(--teal);
		display: inline-flex;
	}

	body.menu-open {
		overflow: hidden;
	}
}

/* =========================================================
   Video Experience & Random YouTube Showcase Page Styles
   ========================================================= */
.video-showcase-section {
	padding: 60px 0 80px;
	background: #ffffff;
}

.video-section-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 24px;
	margin-bottom: 28px;
	flex-wrap: wrap;
}

.video-header-info {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.video-live-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(147, 184, 61, .12);
	border: 1px solid rgba(147, 184, 61, .35);
	color: var(--pine);
	border-radius: 999px;
	padding: 5px 14px;
	font-size: 11px;
	font-weight: 850;
	letter-spacing: .08em;
	width: fit-content;
}

.pulse-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--lime);
	box-shadow: 0 0 0 0 rgba(147, 184, 61, .7);
	animation: pulseLiveDot 1.8s infinite;
}

@keyframes pulseLiveDot {
	0% {
		box-shadow: 0 0 0 0 rgba(147, 184, 61, .7);
	}

	70% {
		box-shadow: 0 0 0 8px rgba(147, 184, 61, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(147, 184, 61, 0);
	}
}

.video-main-heading {
	font-size: clamp(28px, 3.2vw, 42px);
	font-weight: 800;
	letter-spacing: -1.5px;
	color: var(--ink);
	margin: 0;
	line-height: 1.15;
}

.video-main-heading span {
	color: var(--teal);
}

.video-controls-toolbar {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.btn-shuffle {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(135deg, var(--pine), var(--teal));
	color: #ffffff;
	font-weight: 800;
	box-shadow: 0 6px 20px rgba(5, 45, 51, .2);
	border: none;
	cursor: pointer;
	transition: all .25s ease;
}

.btn-shuffle:hover {
	background: linear-gradient(135deg, var(--leaf), var(--lime));
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(36, 79, 50, .3);
}

.btn-toggle-overlay,
.btn-auto-shuffle {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	transition: all .25s ease;
	font-size: 13.5px;
	font-weight: 700;
}

.btn-auto-shuffle.active {
	background: var(--lime);
	color: #031e22;
	border-color: var(--lime);
	box-shadow: 0 4px 14px rgba(147, 184, 61, .35);
}

/* Cinema Stage */
.video-cinema-stage {
	position: relative;
	border-radius: 28px;
	overflow: hidden;
	background: #031e22;
	box-shadow: 0 24px 70px rgba(3, 30, 34, .28);
	border: 1px solid rgba(5, 45, 51, .12);
}

.video-screen-wrapper {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	background: #031e22;
	overflow: hidden;
}

.video-screen-wrapper iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: none;
	display: block;
}

/* Text Overlay Panel */
.video-overlay-panel {
	position: absolute;
	left: 28px;
	bottom: 28px;
	right: 28px;
	max-width: 640px;
	z-index: 6;
	background: linear-gradient(135deg, rgba(3, 30, 34, .92) 0%, rgba(5, 45, 51, .84) 100%);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 22px;
	padding: 22px 26px;
	color: #ffffff;
	box-shadow: 0 16px 45px rgba(0, 0, 0, .45);
	transition: opacity .3s ease, transform .3s ease;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.video-overlay-panel.fading {
	opacity: 0;
	transform: translateY(10px);
}

.video-overlay-topbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.video-overlay-tag {
	display: inline-flex;
	align-items: center;
	background: var(--lime);
	color: #031e22;
	border-radius: 999px;
	padding: 4px 12px;
	font-size: 10.5px;
	font-weight: 850;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.video-overlay-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.video-overlay-duration {
	font-size: 12px;
	font-weight: 600;
	color: rgba(255, 255, 255, .75);
}

.overlay-dismiss-btn {
	background: rgba(255, 255, 255, .12);
	border: 1px solid rgba(255, 255, 255, .18);
	color: #ffffff;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	cursor: pointer;
	transition: all .2s ease;
}

.overlay-dismiss-btn:hover {
	background: rgba(255, 255, 255, .25);
	transform: scale(1.08);
}

.video-overlay-title {
	font-size: clamp(20px, 2.2vw, 26px);
	font-weight: 800;
	letter-spacing: -.8px;
	color: #ffffff;
	margin: 0 0 6px;
	line-height: 1.2;
}

.video-overlay-desc {
	font-size: 14.5px;
	line-height: 1.55;
	color: rgba(255, 255, 255, .82);
	margin: 0 0 14px;
}

.video-overlay-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

.video-overlay-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.video-overlay-pills span {
	background: rgba(255, 255, 255, .1);
	border: 1px solid rgba(255, 255, 255, .14);
	color: rgba(255, 255, 255, .9);
	border-radius: 999px;
	padding: 4px 10px;
	font-size: 11.5px;
	font-weight: 600;
}

.video-overlay-cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #ffffff;
	color: var(--teal);
	border-radius: 999px;
	padding: 7px 16px;
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
	transition: all .25s ease;
	white-space: nowrap;
}

.video-overlay-cta:hover {
	background: var(--lime);
	color: #031e22;
	transform: translateY(-2px);
}

/* Minimized Floating Button */
.video-overlay-minimized {
	position: absolute;
	bottom: 24px;
	left: 24px;
	z-index: 6;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(3, 30, 34, .88);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, .25);
	color: #ffffff;
	border-radius: 999px;
	padding: 8px 16px;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 8px 24px rgba(0, 0, 0, .35);
	transition: all .25s ease;
}

.video-overlay-minimized:hover {
	background: var(--teal);
	transform: translateY(-2px);
}

/* Shuffle Progress Bar */
.shuffle-progress-bar {
	width: 100%;
	height: 4px;
	background: rgba(255, 255, 255, .15);
	overflow: hidden;
}

.shuffle-progress-fill {
	height: 100%;
	width: 0%;
	background: linear-gradient(90deg, var(--leaf), var(--lime));
	transition: width .1s linear;
}

/* Quick Action Shuffle Strip */
.video-shuffle-strip {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: var(--cream);
	border: 1px solid rgba(5, 45, 51, .09);
	border-radius: 20px;
	padding: 16px 24px;
	margin-top: 24px;
	gap: 20px;
	flex-wrap: wrap;
}

.shuffle-strip-left {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
}

.shuffle-badge {
	display: inline-flex;
	background: rgba(5, 45, 51, .1);
	color: var(--teal);
	border-radius: 999px;
	padding: 5px 12px;
	font-size: 11px;
	font-weight: 850;
	letter-spacing: .06em;
}

.shuffle-strip-left p {
	margin: 0;
	color: var(--text);
	font-size: 14.5px;
}

/* Playlist Filter Tabs */
.video-filter-tabs {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin: 32px 0 40px;
	flex-wrap: wrap;
}

.video-filter-btn {
	background: #ffffff;
	border: 1px solid rgba(5, 45, 51, .12);
	color: var(--ink);
	padding: 9px 20px;
	border-radius: 999px;
	font-size: 13.5px;
	font-weight: 750;
	cursor: pointer;
	transition: all .25s ease;
}

.video-filter-btn:hover {
	border-color: var(--teal);
	color: var(--teal);
	transform: translateY(-2px);
}

.video-filter-btn.active {
	background: var(--teal);
	color: #ffffff;
	border-color: var(--teal);
	box-shadow: 0 6px 18px rgba(5, 45, 51, .18);
}

/* Video Playlist Grid */
.video-cards-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.video-card {
	background: #ffffff;
	border-radius: 24px;
	overflow: hidden;
	border: 1px solid rgba(5, 45, 51, .08);
	box-shadow: 0 10px 30px rgba(5, 45, 51, .05);
	cursor: pointer;
	display: flex;
	flex-direction: column;
	transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.video-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 45px rgba(5, 45, 51, .12);
	border-color: rgba(36, 79, 50, .25);
}

.video-card.is-playing {
	border-color: var(--lime);
	box-shadow: 0 0 0 2px var(--lime), 0 20px 45px rgba(5, 45, 51, .15);
}

.video-card-thumb-wrap {
	position: relative;
	aspect-ratio: 16 / 9;
	background: #031e22;
	overflow: hidden;
}

.video-card-thumb-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .5s ease;
}

.video-card:hover .video-card-thumb-wrap img {
	transform: scale(1.06);
}

.video-card-tag {
	position: absolute;
	top: 14px;
	left: 14px;
	background: rgba(3, 30, 34, .85);
	backdrop-filter: blur(8px);
	color: #ffffff;
	border-radius: 999px;
	padding: 4px 10px;
	font-size: 10.5px;
	font-weight: 800;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.video-card-duration {
	position: absolute;
	bottom: 12px;
	right: 12px;
	background: rgba(0, 0, 0, .75);
	color: #ffffff;
	border-radius: 6px;
	padding: 3px 8px;
	font-size: 11.5px;
	font-weight: 700;
}

.video-card-play-overlay {
	position: absolute;
	inset: 0;
	background: rgba(3, 30, 34, .45);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	opacity: 0;
	transition: opacity .3s ease;
}

.video-card:hover .video-card-play-overlay,
.video-card.is-playing .video-card-play-overlay {
	opacity: 1;
}

.play-btn-circle {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--lime);
	color: #031e22;
	display: grid;
	place-items: center;
	box-shadow: 0 8px 24px rgba(0, 0, 0, .3);
	transition: transform .25s ease;
}

.video-card:hover .play-btn-circle {
	transform: scale(1.1);
}

.play-label {
	color: #ffffff;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .04em;
	text-transform: uppercase;
	text-shadow: 0 2px 4px rgba(0, 0, 0, .6);
}

.video-card-body {
	padding: 22px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.video-card-title {
	font-size: 18px;
	font-weight: 800;
	color: var(--ink);
	margin: 0 0 8px;
	line-height: 1.3;
}

.video-card-desc {
	font-size: 13.5px;
	line-height: 1.6;
	color: var(--text);
	margin: 0 0 18px;
	flex: 1;
}

.video-card-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 14px;
	border-top: 1px solid rgba(5, 45, 51, .08);
}

.video-card-pill-count {
	font-size: 12px;
	font-weight: 700;
	color: var(--leaf);
}

.video-card-play-btn {
	background: none;
	border: none;
	padding: 0;
	color: var(--teal);
	font-size: 13px;
	font-weight: 800;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	transition: all .2s ease;
}

.video-card-play-btn:hover {
	color: var(--lime);
	transform: translateX(3px);
}

/* Responsiveness for Video Showcase */
@media (max-width: 1020px) {
	.video-cards-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 22px;
	}

	.video-overlay-panel {
		left: 18px;
		right: 18px;
		bottom: 18px;
		padding: 18px 20px;
	}

	.video-overlay-desc {
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
		margin-bottom: 10px;
	}
}

@media (max-width: 700px) {
	.video-cards-grid {
		grid-template-columns: 1fr;
	}

	.video-section-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}

	.video-controls-toolbar {
		width: 100%;
	}

	.video-controls-toolbar .btn {
		flex: 1;
		justify-content: center;
		font-size: 12.5px;
		padding: 9px 12px;
	}

	.video-overlay-panel {
		left: 10px;
		right: 10px;
		bottom: 10px;
		padding: 14px 16px;
		border-radius: 16px;
	}

	.video-overlay-title {
		font-size: 17px;
	}

	.video-overlay-desc {
		display: none;
	}

	.video-overlay-pills {
		display: none;
	}

	.video-overlay-minimized {
		bottom: 12px;
		left: 12px;
		padding: 6px 12px;
		font-size: 11.5px;
	}

	.video-shuffle-strip {
		flex-direction: column;
		align-items: flex-start;
		padding: 16px;
	}

	.shuffle-strip-right {
		width: 100%;
	}

	.shuffle-strip-right .btn {
		width: 100%;
		justify-content: center;
	}
}