/* ==========================================================================
   Home Page — Hero Section
   ========================================================================== */

/* --- Hero Section --- */
.hero-section {
	position: relative;
	min-height: 900px;
	overflow: hidden;
	background-color: var(--color-black);
	display: flex;
	flex-direction: column;
}

/* Red gradient blobs (similar to footer) */
.hero-section::before,
.hero-section::after {
	content: '';
	position: absolute;
	pointer-events: none;
	z-index: 0;
}

.hero-section::before {
	width: 872px;
	height: 865px;
	left: -296px;
	top: 406px;
	border-radius: 872px;
	background: #BC0000;
	filter: blur(400px);
}

.hero-section::after {
	width: 752px;
	height: 735px;
	right: -100px;
	top: -285px;
	border-radius: 752px;
	background: #BC0000;
	filter: blur(400px);
}

/* --- Main Image --- */
.hero-main-image {
	position: absolute;
	top: 57px;
	left: calc(50% - 567px);
	width: 1352px;
	height: 897px;
	object-fit: cover;
	object-position: top center;
	z-index: 1;
	pointer-events: none;
	opacity: 1;
	/* Left fade to blend with dark background */
	mask-image: linear-gradient(to right, transparent 0%, black 25%);
	-webkit-mask-image: linear-gradient(to right, transparent 0%, black 25%);
}

/* --- Grid Container --- */
.hero-grid {
	position: relative;
	z-index: 2;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	padding-top: 123px;
	/* 195px design offset - 72px header */
}

/* --- Content Block --- */
.hero-content {
	position: static;
	/* Let absolute child align to .hero-grid */
	max-width: 521px;
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.hero-tag {
	font-family: var(--font-main);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--color-red);
}

.hero-title {
	font-family: var(--font-heading);
	font-size: 64px;
	font-weight: 700;
	line-height: 0.9;
	letter-spacing: -1.92px;
	text-transform: uppercase;
	color: var(--color-white);
	margin: 0;
}

.hero-desc {
	font-family: var(--font-main);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.2;
	color: var(--color-white);
	max-width: 389px;
	margin: 0;
}

/* --- Buttons --- */
.hero-buttons {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.btn-primary-outline {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px 24px;
	max-width: 330px;
	background-color: var(--color-white);
	border: 1px solid var(--color-red);
	color: var(--color-red);
	font-family: var(--font-main);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
	text-transform: uppercase;
	text-decoration: none;
	transition: var(--transition);
	cursor: pointer;
}

.btn-primary-outline:hover {
	background-color: var(--color-red);
	color: var(--color-white);
	border-color: var(--color-red);
}

.btn-outline-white {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px 24px;
	max-width: 330px;
	background-color: transparent;
	border: 1px solid var(--color-white);
	color: var(--color-white);
	font-family: var(--font-main);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
	text-transform: uppercase;
	text-decoration: none;
	transition: var(--transition);
	cursor: pointer;
}

.btn-outline-white:hover {
	background-color: rgba(255, 255, 255, 0.1);
}

/* --- Social Sidebar --- */
.hero-socials {
	position: absolute;
	right: 80px;
	top: 195px;
	display: flex;
	flex-direction: column;
	gap: 7px;
	z-index: 10;
}

.hero-social-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	background-color: var(--color-red);
	transition: var(--transition);
	text-decoration: none;
}

.hero-social-btn:hover {
	background-color: #a00000;
}

.hero-social-btn img {
	width: 24px;
	height: 24px;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

/* --- Bottom Bar (Video + Features) --- */
.hero-bottom-bar {
	display: flex;
	width: 100%;
	height: 176px;
	backdrop-filter: blur(17px);
	-webkit-backdrop-filter: blur(17px);
	background-color: rgba(0, 0, 0, 0.05);
	margin-top: auto;
	position: relative;
	z-index: 2;
}

/* Video Preview */
.hero-video-preview {
	flex: 1;
	position: relative;
	cursor: pointer;
	overflow: hidden;
	min-width: 0;
}

.hero-video-preview img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.hero-video-preview:hover img {
	transform: scale(1.05);
}

.hero-video-overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.47);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
}

.hero-video-preview:hover .hero-video-overlay {
	background-color: rgba(0, 0, 0, 0.3);
}

/* Feature Cards */
.hero-features {
	display: flex;
	flex: 4;
	min-width: 0;
}

.hero-feature-card {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
	padding: 4px 24px;
	backdrop-filter: blur(9px);
	-webkit-backdrop-filter: blur(9px);
	min-width: 0;
}

.hero-feature-value {
	font-family: var(--font-heading);
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--color-white);
	white-space: nowrap;
}

.hero-feature-label {
	font-family: var(--font-main);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
	color: var(--color-white);
}

/* --- Floating CTA Button --- */
.floating-cta {
	position: fixed;
	right: 80px;
	bottom: 80px;
	width: 80px;
	height: 80px;
	background-color: var(--color-red);
	color: var(--color-white);
	border: none;
	padding: 8px;
	font-family: var(--font-main);
	font-size: 10px;
	font-weight: 400;
	line-height: 1.2;
	text-align: center;
	text-transform: none;
	cursor: pointer;
	z-index: 998;
	transition: var(--transition);
}

.floating-cta:hover {
	background-color: #a00000;
}

@media (min-width: 1440px) {
	.floating-cta {
		right: calc(50% - 640px);
		/* Align with container right border */
	}
}

/* --- Video Popup --- */
.video-popup-inner {
	background-color: transparent;
	max-width: 900px;
	width: 90%;
	padding: 0;
	position: relative;
}

.video-popup-content {
	width: 100%;
	aspect-ratio: 16 / 9;
	background-color: #000;
}

.video-popup-content iframe,
.video-popup-content video {
	width: 100%;
	height: 100%;
	border: none;
}

.video-popup-inner .popup-close {
	top: -40px;
	right: 0;
	color: var(--color-white);
	font-size: 28px;
	font-weight: 300;
	width: auto;
	height: auto;
}

/* ==========================================================================
   About Us Section
   ========================================================================== */

.about-section {
	position: relative;
	padding: 80px 0;
	background-color: var(--color-black);
	overflow: visible;
}

.about-section::after {
	content: '';
	position: absolute;
	pointer-events: none;
	z-index: 0;
	width: 615px;
	height: 588px;
	border-radius: 50%;
	background: #BC0000;
	filter: blur(400px);
	top: 324px;
	left: 1200px;
}

.about-section .gohard-container {
	position: relative;
	z-index: 2;
}

.about-title {
	font-family: var(--font-heading);
	font-size: 56px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--color-white);
	margin: 0 0 32px 0;
}

.about-title .text-red {
	color: var(--color-red);
}

.about-grid {
	display: grid;
	grid-template-columns: 630px 1fr;
	gap: 40px;
	align-items: stretch;
}

.about-image-wrapper {
	position: relative;
	width: 630px;
	height: 583px;
	overflow: hidden;
}

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

.about-content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	min-width: 0;
}

.about-desc {
	font-family: var(--font-main);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.2;
	color: var(--color-white);
	margin: 0;
}

.about-list-wrapper {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.about-list-title {
	font-family: var(--font-heading);
	font-size: 32px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--color-red);
	margin: 0;
}

.about-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.about-list-item {
	display: flex;
	align-items: flex-start;
	gap: 9px;
}

.about-list-icon {
	width: 14px;
	height: 10px;
	flex-shrink: 0;
	margin-top: 6px;
}

.about-list-text {
	font-family: var(--font-main);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.2;
	color: var(--color-white);
}

.about-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 24px;
	width: 182px;
	height: 51px;
	background-color: var(--color-red);
	color: var(--color-white);
	font-family: var(--font-main);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
	text-transform: uppercase;
	text-decoration: none;
	transition: var(--transition);
	cursor: pointer;
	border: none;
	box-sizing: border-box;
}

.about-btn:hover {
	background-color: #a00000;
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */

.why-section {
	position: relative;
	padding: 80px 0;
	background-color: transparent;
	overflow: hidden;
}

.why-section::after {
	content: '';
	position: absolute;
	pointer-events: none;
	z-index: 0;
	width: 615px;
	height: 588px;
	border-radius: 50%;
	background: #BC0000;
	filter: blur(400px);
	bottom: -150px;
	right: -150px;
	opacity: 0.8;
}

.why-section .gohard-container {
	position: relative;
	z-index: 2;
}

.why-header {
	display: flex;
	flex-direction: column;
	gap: 24px;
	align-items: center;
	text-align: center;
	margin-bottom: 40px;
}

.why-title {
	font-family: var(--font-heading);
	font-size: 56px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--color-white);
	margin: 0;
}

.why-title .text-red {
	color: var(--color-red);
}

.why-subtitle {
	font-family: var(--font-main);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.2;
	color: var(--color-white);
	margin: 0;
}

.why-grid {
	display: grid;
	grid-template-columns: 522px 1fr;
	gap: 20px;
	align-items: center;
}

.why-image-wrapper {
	position: relative;
	width: 522px;
	height: 541px;
	overflow: hidden;
}

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

.why-cards-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px 12px;
	width: 100%;
}

.why-card {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 24px;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	min-height: 253px;
	box-sizing: border-box;
}

.why-card-index-1,
.why-card-index-2 {
	min-height: 272px;
}

.why-card-red {
	background-color: var(--color-red);
}

.why-card-grey {
	background-color: rgba(125, 125, 125, 0.15);
}

.why-card-content {
	display: flex;
	flex-direction: column;
	gap: 24px;
	height: 100%;
	justify-content: flex-start;
}

.why-card-icon-wrapper {
	width: 48px;
	height: 48px;
	flex-shrink: 0;
}

.why-card-icon {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.why-card-text {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.why-card-title {
	font-family: var(--font-main);
	font-size: 24px;
	font-weight: 700;
	line-height: 1.4;
	color: var(--color-white);
	margin: 0;
}

.why-card-desc {
	font-family: var(--font-main);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.2;
	color: var(--color-white);
	margin: 0;
}

/* ==========================================================================
   Zones Section
   ========================================================================== */

.zones-section {
	position: relative;
	padding: 80px 0;
	background-color: var(--color-black);
	overflow: hidden;
}

.zones-section::before {
	content: '';
	position: absolute;
	pointer-events: none;
	z-index: 0;
	width: 615px;
	height: 588px;
	border-radius: 50%;
	background: #BC0000;
	filter: blur(400px);
	top: 50%;
	left: -300px;
	transform: translateY(-50%);
	opacity: 0.6;
}

.zones-section .gohard-container {
	position: relative;
	z-index: 2;
}

.zones-header {
	display: flex;
	flex-direction: column;
	gap: 24px;
	align-items: center;
	text-align: center;
	margin-bottom: 56px;
}

.zones-section-title {
	font-family: var(--font-heading);
	font-size: 56px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--color-white);
	margin: 0;
}

.zones-section-title .text-red {
	color: var(--color-red);
}

.zones-section-subtitle {
	font-family: var(--font-main);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.2;
	color: var(--color-white);
	margin: 0;
}

.zones-tabs-wrapper {
	width: 100%;
	border: 1px solid var(--color-red);
	padding: 8px;
	box-sizing: border-box;
	margin-bottom: 57px;
}

.zones-tabs {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	gap: 8px;
}

.zones-tab {
	background: transparent;
	border: none;
	padding: 12px 16px;
	cursor: pointer;
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
	box-sizing: border-box;
}

.zones-tab span {
	font-family: var(--font-main);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
	text-transform: uppercase;
	color: #7D7D7D;
	white-space: nowrap;
	transition: var(--transition);
}

.zones-tab.active {
	background-color: var(--color-red);
	box-shadow: 0px 1px 1px rgba(145, 158, 171, 0.16);
}

.zones-tab.active span {
	color: var(--color-white);
}

.zones-tab:hover:not(.active) span {
	color: var(--color-white);
}

.zones-content-wrapper {
	position: relative;
	width: 100%;
}

.zone-content-item {
	display: none;
	width: 100%;
}

.zone-content-item.active {
	display: block;
	animation: zonesFadeIn 0.4s ease-in-out;
}

@keyframes zonesFadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

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

.zone-grid {
	display: grid;
	grid-template-columns: 625px 1fr;
	gap: 20px;
	align-items: stretch;
}

.zone-carousel-container {
	position: relative;
	width: 625px;
	height: 400px;
	overflow: hidden;
}

.zone-carousel {
	width: 100%;
	height: 100%;
}

.zone-carousel-cell {
	width: 100%;
	height: 100%;
	margin-right: 10px;
}

.zone-carousel-cell img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Custom Navigation Arrows */
.zone-carousel-nav {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	padding: 0 20px;
	pointer-events: none;
	z-index: 10;
}

.zone-carousel-prev,
.zone-carousel-next {
	width: 40px;
	height: 40px;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	pointer-events: auto;
	transition: var(--transition);
	color: var(--color-white);
	background-color: var(--color-red);
}

.zone-carousel-prev:hover:not(.disabled),
.zone-carousel-next:hover:not(.disabled) {
	background-color: #a00000;
}

.zone-carousel-prev.disabled,
.zone-carousel-next.disabled {
	background-color: #7D7D7D;
	cursor: not-allowed;
	pointer-events: none;
}

.zone-info {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	box-sizing: border-box;
}

.zone-info-content {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.zone-title {
	font-family: var(--font-heading);
	font-size: 32px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--color-red);
	margin: 0;
}

.zone-description {
	font-family: var(--font-main);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.4;
	color: var(--color-white);
}

.zone-description p {
	margin: 0;
}

.zone-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 24px;
	width: 182px;
	height: 52px;
	background-color: var(--color-red);
	color: var(--color-white);
	font-family: var(--font-main);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
	text-transform: uppercase;
	text-decoration: none;
	transition: var(--transition);
	cursor: pointer;
	border: none;
	box-sizing: border-box;
	margin-top: 32px;
}

.zone-btn:hover {
	background-color: #a00000;
}

/* ==========================================================================
   3D Tour Section
   ========================================================================== */

.tour-section {
	position: relative;
	padding: 120px 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
}

.tour-overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.55);
	z-index: 1;
}

.tour-section .gohard-container {
	position: relative;
	z-index: 2;
}

.tour-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 40px;
	text-align: center;
	max-width: 1280px;
	margin: 0 auto;
}

.tour-title {
	font-family: var(--font-heading);
	font-size: 56px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--color-white);
	margin: 0;
	max-width: 1100px;
}

.tour-title .text-red {
	color: var(--color-red);
}

.tour-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 24px;
	height: 52px;
	background-color: var(--color-red);
	color: var(--color-white);
	font-family: var(--font-main);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
	text-transform: uppercase;
	text-decoration: none;
	transition: var(--transition);
	cursor: pointer;
	border: none;
	box-sizing: border-box;
}

.tour-btn:hover {
	background-color: #a00000;
}

/* ==========================================================================
   Reviews Section
   ========================================================================== */

.reviews-section {
	position: relative;
	padding: 120px 0;
	background-color: transparent;
	overflow: hidden;
}

.reviews-section::after {
	content: '';
	position: absolute;
	pointer-events: none;
	z-index: 0;
	width: 615px;
	height: 588px;
	border-radius: 50%;
	background: #BC0000;
	filter: blur(400px);
	top: 50%;
	left: -300px;
	transform: translateY(-50%);
}

.reviews-section .gohard-container {
	position: relative;
	z-index: 2;
}

.reviews-header-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 40px;
}

.reviews-header {
	display: flex;
	flex-direction: column;
	gap: 24px;
	max-width: 768px;
}

.reviews-title {
	font-family: var(--font-heading);
	font-size: 56px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--color-white);
	margin: 0;
}

.reviews-title .text-red {
	color: var(--color-red);
}

.reviews-subtitle {
	font-family: var(--font-main);
	font-size: 18px;
	line-height: 1.2;
	color: var(--color-white);
	margin: 0;
}

.reviews-carousel-nav {
	display: flex;
	gap: 16px;
}

.reviews-carousel-prev,
.reviews-carousel-next {
	width: 40px;
	height: 40px;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: var(--transition);
	color: var(--color-white);
	background-color: var(--color-red);
}

.reviews-carousel-prev:hover:not(.disabled),
.reviews-carousel-next:hover:not(.disabled) {
	background-color: #a00000;
}

.reviews-carousel-prev.disabled,
.reviews-carousel-next.disabled {
	background-color: #7D7D7D;
	cursor: not-allowed;
	pointer-events: none;
}

.reviews-carousel {
	width: 100%;
}

.review-card-cell {
	width: 360px;
	height: 550px;
	margin-right: 20px;
}

.review-card {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	cursor: pointer;
}

.review-card-default {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 24px;
	transition: opacity 0.4s ease-in-out;
	z-index: 2;
}

/* Subtle overlay gradient to ensure text readability on default state */
.review-card-default::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 30%);
	z-index: -1;
}

.review-card-hover {
	position: absolute;
	inset: 0;
	background-color: var(--color-red);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 24px;
	transition: opacity 0.4s ease-in-out;
	z-index: 3;
	opacity: 0;
	pointer-events: none;
}

.review-card.active .review-card-hover {
	opacity: 1;
	pointer-events: auto;
}

.review-user-info {
	display: flex;
	align-items: center;
	gap: 9px;
	position: relative;
	z-index: 4;
}

.review-user-avatar {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
}

.review-user-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.review-user-handle {
	font-family: var(--font-main);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
	color: var(--color-white);
	text-decoration: none;
	transition: opacity 0.2s ease;
}

a.review-user-handle:hover {
	opacity: 0.8;
}

.review-card-logo {
	width: 192px;
	height: 125px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
}

.review-card-logo img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.review-card-content {
	display: flex;
	flex-direction: column;
	gap: 24px;
	width: 100%;
}

.review-text {
	font-family: var(--font-main);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.3;
	color: var(--color-white);
	margin: 0;
	text-align: left;
}

/* ==========================================================================
   Club Membership Section
   ========================================================================== */

.membership-section {
	position: relative;
	padding: 100px 0;
	background-color: var(--color-black);
	overflow: hidden;
}

.membership-section::before {
	content: '';
	position: absolute;
	pointer-events: none;
	z-index: 0;
	width: 600px;
	height: 600px;
	border-radius: 50%;
	background: #BC0000;
	filter: blur(350px);
	top: -200px;
	left: -200px;
	opacity: 0.6;
}

.membership-section::after {
	content: '';
	position: absolute;
	pointer-events: none;
	z-index: 0;
	width: 600px;
	height: 600px;
	border-radius: 50%;
	background: #BC0000;
	filter: blur(350px);
	bottom: -200px;
	right: -200px;
	opacity: 0.6;
}

.membership-section .gohard-container {
	position: relative;
	z-index: 2;
}

.membership-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin-bottom: 56px;
}

.membership-title {
	font-family: var(--font-heading);
	font-size: 56px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--color-white);
	margin: 0 0 24px 0;
}

.membership-subtitle {
	font-family: var(--font-main);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.2;
	color: var(--color-white);
	margin: 0;
}

.membership-cards-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	align-items: start;
}

.membership-card-col {
	display: flex;
	flex-direction: column;
	gap: 24px;
	background-color: transparent;
	width: 100%;
}

.membership-card-visual {
	position: relative;
	height: 208px;
	border-radius: 8.625px;
	border-right: 18px solid var(--color-red);
	overflow: hidden;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.card-diagonal-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	transition: background 0.3s ease;
}

.membership-card-visual.style-black .card-diagonal-overlay {
	background: linear-gradient(115deg, #000000 53%, transparent 53.2%);
}

.membership-card-visual.style-grey .card-diagonal-overlay {
	background: linear-gradient(115deg, #2b2b2b 53%, transparent 53.2%);
}

.membership-card-visual.style-white .card-diagonal-overlay {
	background: linear-gradient(115deg, #ffffff 53%, transparent 53.2%);
}

.card-logo {
	position: absolute;
	left: 21px;
	top: 21px;
	width: 120px;
	height: 40px;
	z-index: 2;
}

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

.membership-card-details {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.membership-card-name {
	font-family: var(--font-heading);
	font-size: 20px;
	font-weight: 700;
	line-height: 1.5;
	text-transform: uppercase;
	color: var(--color-white);
	margin: 0;
	text-align: center;
}

.membership-card-prices {
	background-color: #0f0f0f;
	padding: 8px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.price-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.price-label {
	font-family: var(--font-main);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.2;
	color: var(--color-white);
}

.price-value {
	font-family: var(--font-main);
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4;
	color: var(--color-white);
}

.membership-card-collapsible {
	display: flex;
	flex-direction: column;
	background-color: #0f0f0f;
}

.collapsible-toggle {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px;
	background: transparent;
	border: none;
	width: 100%;
	cursor: pointer;
	text-align: left;
	color: var(--color-white);
	font-family: var(--font-main);
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4;
	transition: background-color 0.2s ease;
}

.collapsible-toggle:hover {
	background-color: rgba(255, 255, 255, 0.02);
}

.toggle-icon {
	color: var(--color-white);
	transition: transform 0.3s ease;
	flex-shrink: 0;
}

.plus-line-v {
	transition: opacity 0.2s ease;
}

.membership-card-collapsible.is-open .plus-line-v {
	opacity: 0;
}

.membership-card-collapsible.is-open .toggle-icon {
	transform: rotate(90deg);
}

.collapsible-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefits-list {
	list-style: none;
	padding: 16px 8px;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.benefit-item {
	display: flex;
	align-items: flex-start;
	gap: 9px;
}

.benefit-check {
	color: var(--color-red);
	margin-top: 5px;
	flex-shrink: 0;
}

.benefit-text {
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--color-white);
}

.membership-card-buttons {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: auto;
}

.membership-card-buttons .btn {
	width: 100%;
	padding: 16px 24px;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 16px;
	line-height: 1.2;
}

.btn-membership-action {
	cursor: pointer;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
	.hero-content {
		position: relative;
		/* Allow content to contain the image flow */
	}

	.hero-main-image {
		position: relative;
		left: 0;
		top: 0;
		width: calc(100% + 80px);
		margin-left: -40px;
		height: 480px;
		max-height: none;
		opacity: 1;
		pointer-events: auto;
		z-index: 1;
		mask-image: none;
		-webkit-mask-image: none;
	}

	.hero-socials {
		display: none;
	}

	.hero-bottom-bar {
		height: auto;
		flex-direction: column;
		gap: 16px;
		margin-top: 40px;
	}

	.hero-video-preview {
		height: 182px;
		width: 100%;
	}

	.hero-features {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
		width: 100%;
	}

	.hero-feature-card {
		height: 80px;
		padding: 4px 16px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		gap: 4px;
		background: rgba(0, 0, 0, 0.05);
		backdrop-filter: blur(9px);
		-webkit-backdrop-filter: blur(9px);
	}

	.hero-feature-card .hero-feature-value {
		font-size: 24px;
	}

	.hero-feature-card .hero-feature-label {
		font-size: 10px;
		font-weight: 400;
	}

	.floating-cta {
		right: 40px;
		bottom: 40px;
	}

	.btn-primary-outline,
	.btn-outline-white {
		width: 100%;
		max-width: unset;
	}

	/* About Us */
	.about-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.about-image-wrapper {
		width: 100%;
		height: 480px;
	}

	.about-content {
		height: auto;
		gap: 32px;
	}

	/* Why Choose Us */
	.why-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.why-image-wrapper {
		width: 100%;
		height: 480px;
	}

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

	.why-card {
		min-height: auto;
		height: auto;
	}

	.why-card-index-1,
	.why-card-index-2 {
		min-height: auto;
	}

	.why-card-index-1 {
		order: 1;
	}

	.why-card-index-2 {
		order: 2;
	}

	.why-card-index-4 {
		order: 3;
	}

	.why-card-index-3 {
		order: 4;
	}

	/* Zones */
	.zone-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.zone-carousel-container {
		width: 100%;
		height: 480px;
	}

	.zone-info {
		height: auto;
		gap: 32px;
	}

	/* 3D Tour */
	.tour-section {
		padding: 100px 0;
	}

	.tour-title {
		font-size: 48px;
	}

	/* Reviews */
	.reviews-section {
		padding: 100px 0;
	}

	.reviews-title {
		font-size: 48px;
	}

	.review-card-cell {
		width: 320px;
		height: 480px;
	}

	/* Club Membership */
	.membership-section {
		padding: 80px 0;
	}

	.membership-title {
		font-size: 48px;
	}

	.membership-cards-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 32px;
	}
}

@media (max-width: 768px) {
	.hero-section {
		min-height: auto;
		padding-bottom: 40px;
	}

	.hero-section::before {
		width: 244px;
		height: 242px;
		filter: blur(150px);

		top: 20px;
		left: 20px;
	}

	.hero-section::after {
		width: 244px;
		height: 242px;
		filter: blur(150px);

		right: -77px;
		bottom: 0;
		top: unset;
	}

	.hero-grid {
		padding-top: 80px;
	}

	.hero-title {
		font-size: 48px;
		letter-spacing: -1.44px;
	}

	.hero-desc {
		font-size: 16px;
		max-width: 100%;
	}

	.hero-content {
		gap: 14px;
		max-width: 100%;
	}

	.hero-main-image {
		width: calc(100% + 40px);
		margin-left: 0px;
		height: 384px;
		margin-top: 24px;
		margin-bottom: -27px;
	}

	.floating-cta {
		width: 56px;
		height: 56px;
		right: 20px;
		bottom: 20px;
		font-size: 10px;
		padding: 4px;
		line-height: 1.1;
	}

	.hero-buttons {
		z-index: 2;
	}

	.hero-bottom-bar {
		backdrop-filter: none;
		-webkit-backdrop-filter: none;

		padding: 0 20px;
	}

	.video-popup-inner {
		width: 95%;
	}

	/* About Us */
	.about-section {
		padding: 40px 0;
	}

	.about-section::after {
		width: 244px;
		height: 242px;
		filter: blur(250px);
		top: -85px;
		left: -150px;
	}

	.about-title {
		font-size: 32px;
		margin-bottom: 24px;
	}

	.about-image-wrapper {
		height: 320px;
	}

	.about-desc {
		font-size: 16px;
	}

	.about-list-wrapper {
		gap: 16px;
	}

	.about-list-title {
		font-size: 24px;
	}

	.about-list-text {
		font-size: 16px;
	}

	.about-btn {
		width: 100%;
		height: 51px;
	}

	/* Why Choose Us */
	.why-section {
		padding: 40px 0;
	}

	.why-section::after {
		width: 244px;
		height: 242px;
		filter: blur(250px);
		bottom: -100px;
		right: -100px;
	}

	.why-title {
		font-size: 32px;
	}

	.why-subtitle {
		font-size: 16px;
	}

	.why-image-wrapper {
		height: 360px;
	}

	.why-card {
		height: auto;
		min-height: 240px;
		padding: 24px;
	}

	.why-card-title {
		font-size: 20px;
	}

	.why-card-desc {
		font-size: 16px;
	}

	.why-card-content {
		gap: 16px;
	}

	/* Zones */
	.zones-section {
		padding: 40px 0;
	}

	.zones-section::before {
		width: 244px;
		height: 242px;
		filter: blur(250px);
		top: 50%;
		left: -100px;
	}

	.zones-header {
		margin-bottom: 32px;
		gap: 16px;
	}

	.zones-section-title {
		font-size: 32px;
	}

	.zones-section-subtitle {
		font-size: 16px;
	}

	.zones-tabs-wrapper {
		margin-bottom: 32px;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		-ms-overflow-style: none;
	}

	.zones-tabs-wrapper::-webkit-scrollbar {
		display: none;
	}

	.zones-tabs {
		width: max-content;
		gap: 4px;
	}

	.zones-tab {
		padding: 10px 14px;
		height: 36px;
	}

	.zones-tab span {
		font-size: 14px;
	}

	.zone-carousel-container {
		height: 320px;
	}

	.zone-title {
		font-size: 20px;
		line-height: 1.5;
	}

	.zone-description {
		font-size: 16px;
		line-height: 1.4;
	}

	.zone-btn {
		width: 100%;
		height: 52px;
		margin-top: 24px;
	}

	.zone-carousel-nav {
		padding: 0 10px;
	}

	/* 3D Tour */
	.tour-section {
		padding: 80px 16px;
	}

	.tour-content {
		width: 100%;
		gap: 32px;
	}

	.tour-title {
		font-size: 32px;
		line-height: 1.2;
		word-break: break-word;
	}

	.tour-btn {
		width: 100%;
		height: 52px;
	}

	/* Reviews */
	.reviews-section {
		padding: 40px 0;
	}

	.reviews-section::after {
		width: 244px;
		height: 242px;
		filter: blur(250px);
		top: 50%;
		left: -100px;
		transform: translateY(-50%);
	}

	.reviews-header-wrapper {
		flex-direction: column;
		align-items: center;
		gap: 24px;
		text-align: center;
		margin-bottom: 32px;
	}

	.reviews-header {
		align-items: center;
		text-align: center;
		gap: 16px;
	}

	.reviews-title {
		font-size: 32px;
	}

	.reviews-subtitle {
		font-size: 16px;
	}

	.reviews-carousel-nav {
		justify-content: flex-end;
		width: 100%;
		margin-top: 8px;
	}

	.review-card-cell {
		width: 320px;
		height: 480px;
		margin-right: 16px;
	}

	.review-card-logo {
		width: 150px;
		height: 98px;
	}

	.review-text {
		font-size: 16px;
	}

	/* Club Membership Mobile */
	.membership-section {
		padding: 60px 0;
	}

	.membership-section::before,
	.membership-section::after {
		width: 300px;
		height: 300px;
		filter: blur(200px);
	}

	.membership-header {
		margin-bottom: 40px;
	}

	.membership-title {
		font-size: 32px;
		margin-bottom: 16px;
	}

	.membership-subtitle {
		font-size: 16px;
	}

	.membership-cards-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.membership-card-visual {
		height: 180px;
	}

	.membership-card-visual.style-black .card-diagonal-overlay {
		background: linear-gradient(115deg, #000000 60%, transparent 60.2%);
	}

	.membership-card-visual.style-grey .card-diagonal-overlay {
		background: linear-gradient(115deg, #2b2b2b 60%, transparent 60.2%);
	}

	.membership-card-visual.style-white .card-diagonal-overlay {
		background: linear-gradient(115deg, #ffffff 60%, transparent 60.2%);
	}

	.card-logo {
		left: 16px;
		top: 16px;
		width: 100px;
		height: 33px;
	}

	.membership-card-name {
		font-size: 18px;
	}

	.price-label {
		font-size: 16px;
	}

	.price-value {
		font-size: 18px;
	}

	.collapsible-toggle {
		font-size: 18px;
	}

	.benefit-text {
		font-size: 14px;
	}

	.membership-card-buttons .btn {
		font-size: 14px;
		padding: 14px 20px;
	}
}