/* ==========================================================================
   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 i {
	font-size: 24px;
	color: var(--color-white);
}

.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);
}

/* --- 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-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: visible;
}

.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-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: 100%;
	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-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;
	display: flex;
	align-items: center;
	position: relative;
}

.zones-tabs-scroll-container {
	flex-grow: 1;
	min-width: 0;
	overflow-x: auto;
	overflow-y: hidden;
	scrollbar-width: none;
	-ms-overflow-style: none;
	scroll-behavior: smooth;
	display: flex;
	align-items: center;
}

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

.zones-tabs {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: max-content;
	min-width: 100%;
	gap: 16px;
}

.zones-tabs-prev,
.zones-tabs-next {
	display: none;
	background: transparent;
	border: none;
	color: var(--color-white);
	cursor: pointer;
	padding: 0 12px;
	height: 36px;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
	z-index: 5;
}

.zones-tabs-prev:hover,
.zones-tabs-next:hover {
	color: var(--color-red);
}

.zones-tabs-prev i,
.zones-tabs-next i {
	font-size: 16px;
}

.zones-tabs-wrapper.has-arrows .zones-tabs-prev,
.zones-tabs-wrapper.has-arrows .zones-tabs-next {
	display: flex;
}

@media (max-width: 1280px) {

	.zones-tabs-prev,
	.zones-tabs-next {
		display: none !important;
	}

	.zones-tabs {
		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;
	min-width: 182px;
	max-width: 210px;
	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;
	border-radius: 0;
	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-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: visible;
}

.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-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: contain;
	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: 0;
	overflow: visible;
}

.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;
	display: none;
}

.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: var(--font-main);
	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;
}

/* Membership Marquee */
.membership-marquee-wrapper {
	width: 100%;
	background-color: var(--color-red);
	overflow: hidden;
	display: flex;
	align-items: center;
	height: 65px;
	margin-top: 80px;
	position: relative;
	z-index: 5;
}

.membership-marquee-inner {
	display: flex;
	width: max-content;
	animation: membershipMarquee 35s linear infinite;
}

.membership-marquee-item {
	font-family: var(--font-main);
	font-size: 18px;
	font-weight: 600;
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--color-white);
	white-space: nowrap;
	padding: 0 24px;
}

@keyframes membershipMarquee {
	0% {
		transform: translate3d(0, 0, 0);
	}

	100% {
		transform: translate3d(-50%, 0, 0);
	}
}

/* Terms & Advantages Section */
.terms-section {
	padding: 80px 0;
	position: relative;
	z-index: 5;
}

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

.terms-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;
}

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

.terms-accordion {
	max-width: 1280px;
	margin: 0 auto;
	width: 100%;
}

.accordion-item {
	border-top: 1px solid #2a2a2a;
}

.accordion-item:last-child {
	border-bottom: 1px solid #2a2a2a;
}

.accordion-trigger {
	width: 100%;
	background: transparent;
	border: none;
	outline: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 24px 0;
	cursor: pointer;
	text-align: left;
}

.accordion-trigger-left {
	display: flex;
	align-items: center;
	gap: 24px;
}

.accordion-number {
	font-family: var(--font-heading);
	font-size: 56px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--color-white);
}

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

.accordion-icon-btn {
	width: 48px;
	height: 48px;
	background-color: var(--color-red);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.accordion-icon-btn .chevron-icon {
	width: 24px;
	height: 24px;
	transition: transform 0.3s ease;
}

.accordion-item.is-open .accordion-icon-btn .chevron-icon {
	transform: rotate(90deg);
}

.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-out;
}

.accordion-content-inner {
	padding-bottom: 24px;
}

/* Checkmark Lists */
.checkmark-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

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

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

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

/* Tab 1: Loyalty Columns */
.loyalty-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	align-items: start;
}

.loyalty-col {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

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

/* Tab 2: Installments tables styling */
.installments-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	align-items: start;
}

.installments-table-wrapper {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

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

.installments-table {
	background-color: #0f0f0f;
	border: 1px solid #2a2a2a;
	border-bottom: none;
}

.installments-table .table-header,
.installments-table .table-row {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr 1fr;
	gap: 16px;
	align-items: center;
	padding: 12px;
	border-bottom: 1px solid #2a2a2a;
}

.installments-table .table-header {
	padding: 16px 12px;
}

.installments-table .table-header div {
	font-family: var(--font-main);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
	color: var(--color-white);
	text-transform: uppercase;
}

.installments-table .table-row {
	font-family: var(--font-main);
	color: var(--color-white);
}

.installments-table .table-row .col-payments {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.installments-table .table-row .col-payments .num {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
}

.installments-table .table-row .col-payments .desc {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.2;
	color: #7d7d7d;
}

.installments-table .table-row .col-payment,
.installments-table .table-row .col-total,
.installments-table .table-row .col-monthly {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
}

/* Tab 3: Extra conditions wrapper */
.extra-conditions {
	max-width: 675px;
}


/* ==========================================================================
   App CTA Section
   ========================================================================== */

.app-section {
	padding: 80px 0;
	position: relative;
	background-color: var(--color-black);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	overflow: hidden;
	z-index: 5;
}

/* Background overlay with backdrop blur and red overlay */
.app-section::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	background-color: rgba(188, 0, 0, 0.6);
	mix-blend-mode: overlay;
	pointer-events: none;
}

/* Background red glow blob (fallback/addition) */
.app-section::before {
	content: '';
	position: absolute;
	pointer-events: none;
	z-index: 0;
	width: 615px;
	height: 588px;
	border-radius: 50%;
	background: #BC0000;
	filter: blur(350px);
	top: 50%;
	right: -100px;
	transform: translateY(-50%);
	opacity: 0.7;
}

.app-grid {
	display: grid;
	grid-template-columns: 456px 1fr;
	gap: 24px;
	align-items: center;
	position: relative;
	z-index: 2;
}

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

.app-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;
}

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

.app-features-list {
	margin-top: 8px;
}

.app-buttons {
	display: flex;
	gap: 12px;
	margin-top: 8px;
}

/* App Download Buttons styling */
.btn-app-download {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 20px;
	border: 1px solid var(--color-white);
	border-radius: 8px;
	color: var(--color-white);
	text-decoration: none;
	transition: var(--transition);
	background: transparent;
	width: auto;
}

.btn-app-download:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: var(--color-white);
}

.btn-app-download svg {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
}

.btn-app-download .btn-text-wrapper {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	line-height: 1.1;
}

.btn-app-download .btn-small-text {
	font-family: var(--font-main);
	font-size: 10px;
	font-weight: 400;
	text-transform: none;
	color: #7d7d7d;
}

.btn-app-download .btn-large-text {
	font-family: var(--font-main);
	font-size: 16px;
	font-weight: 600;
	text-transform: none;
	color: var(--color-white);
}

/* iPhone mockups container */
.app-image-wrapper {
	width: 800px;
	height: 600px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: auto;
}

.app-mockups {
	width: 100%;
	height: 100%;
	object-fit: contain;
	pointer-events: none;
	display: block;
}

/* ==========================================================================
   Trainers Section
   ========================================================================== */
.trainers-section {
	position: relative;
	padding: 120px 0;
	background-color: transparent;
	overflow: visible;
}

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

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

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

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

.trainers-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;
}

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

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

.trainers-carousel-prev,
.trainers-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);
}

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

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

.trainers-carousel {
	width: 100%;
	height: 793px;
}

/* Flickity cells */
.trainers-carousel .trainer-card-wrapper {
	width: 413px;
	height: 793px;
	margin-right: 20px;
	position: relative;
	background-color: transparent;
}

.trainer-card-visual {
	position: relative;
	width: 100%;
	height: 518px;
	background-color: transparent;
	overflow: hidden;
}

.trainer-card-visual::before {
	content: '';
	position: absolute;
	width: 412.224px;
	height: 408.915px;
	left: -168.72px;
	top: 399px;
	border-radius: 50%;
	background: #BC0000;
	filter: blur(100px);
	opacity: 0.85;
	pointer-events: none;
	z-index: 0;
}

.trainer-card-visual::after {
	content: '';
	position: absolute;
	width: 355.496px;
	height: 347.459px;
	left: 364.04px;
	top: -81.32px;
	border-radius: 50%;
	background: #BC0000;
	filter: blur(100px);
	opacity: 0.85;
	pointer-events: none;
	z-index: 0;
}

.trainer-photo {
	position: absolute;
	width: 488px;
	height: 488px;
	left: -26px;
	top: 30px;
	object-fit: contain;
	object-position: bottom;
	pointer-events: none;
	z-index: 1;
}

.trainer-card-info {
	position: absolute;
	left: 0;
	width: 413px;
	background-color: var(--color-red);
	padding: 16px;
	color: var(--color-white);
	z-index: 2;
	transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Inactive State */
.trainers-carousel .trainer-card-wrapper:not(.active) .trainer-card-info {
	top: 518px;
}

/* Active State */
.trainers-carousel .trainer-card-wrapper.active .trainer-card-info {
	top: 255px;
}

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

.trainer-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;
}

.trainer-role {
	font-family: var(--font-main);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--color-white);
	margin: 0;
}

.trainer-card-details {
	opacity: 0;
	max-height: 0;
	overflow: hidden;
	transition: opacity 0.3s ease, max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), margin-top 0.4s ease;
	margin-top: 0;
}

.trainers-carousel .trainer-card-wrapper.active .trainer-card-details {
	opacity: 1;
	max-height: 450px;
	margin-top: 16px;
}

.trainer-detail-block {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 16px;
}

.trainer-detail-block:last-child {
	margin-bottom: 0;
}

.detail-block-title {
	font-family: var(--font-heading);
	font-size: 20px;
	font-weight: 700;
	line-height: 1.5;
	color: var(--color-white);
	margin: 0;
}

.detail-block-text {
	font-family: var(--font-main);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--color-white);
	margin: 0;
}




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

@media (max-width: 1280px) {
	.zones-tabs-wrapper {
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
		margin-bottom: 32px;
	}

	.zones-tabs-scroll-container {
		width: 100%;
		max-width: 100%;
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
	}

	.zones-tabs {
		display: flex;
		justify-content: flex-start;
		width: max-content;
		gap: 4px;
	}

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

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

@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;
	}

	/* App Section Tablet */
	.app-grid {
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center;
		justify-items: center;
	}

	.app-desc {
		max-width: 100%;
	}

	.app-features-list {
		align-self: center;
		text-align: left;
		max-width: 380px;
	}

	.app-buttons {
		justify-content: center;
	}

	.app-image-wrapper {
		width: 100%;
		height: auto;
		max-width: 600px;
		margin: 0 auto;
	}

	/* Trainers Section Tablet */
	.trainers-carousel .trainer-card-wrapper {
		width: calc(50% - 10px);
	}
}

@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;
	}

	.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;
	}

	.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%;
		max-width: unset;
		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 0 0;
	}

	.membership-marquee-wrapper {
		height: 48px;
		margin-top: 40px;
	}

	.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;
	}

	/* Terms & Advantages Section Mobile */
	.terms-section {
		padding: 40px 0;
	}

	.terms-header {
		margin-bottom: 32px;
		gap: 24px;
	}

	.terms-title {
		font-family: var(--font-heading);
		font-size: 32px;
		margin: 0;
	}

	.terms-subtitle {
		font-size: 16px;
		text-align: center;
	}

	.terms-accordion {
		max-width: 100%;
		padding: 0px;
	}

	.accordion-trigger {
		padding: 16px 0;
	}

	.accordion-trigger-left {
		gap: 24px;
	}

	.accordion-number,
	.accordion-label {
		font-size: 20px;
		line-height: 1.5;
	}

	.accordion-icon-btn {
		width: 24px;
		height: 24px;
	}

	.accordion-icon-btn .chevron-icon {
		width: 12px;
		height: 12px;
	}

	.loyalty-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.loyalty-col-title {
		font-size: 20px;
	}

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

	.installments-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.installments-table-wrapper {
		gap: 12px;
	}

	.installments-table-title {
		font-size: 20px;
	}

	.installments-table .table-header,
	.installments-table .table-row {
		grid-template-columns: 1.1fr 0.8fr 1fr 1fr;
		gap: 8px;
		padding: 12px 4px;
	}

	.installments-table .table-header div {
		font-size: 12px;
	}

	.installments-table .table-row .col-payments .num {
		font-size: 12px;
	}

	.installments-table .table-row .col-payments .desc {
		font-size: 10px;
	}

	.installments-table .table-row .col-payment,
	.installments-table .table-row .col-total,
	.installments-table .table-row .col-monthly {
		font-size: 12px;
	}

	/* App Section Mobile */
	.app-section {
		padding: 40px 0;
		background-position: left;
	}

	.app-section::before {
		width: 244px;
		height: 242px;
		filter: blur(200px);
		right: -50px;
	}

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

	.app-title .text-red {
		display: block;
	}

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

	.app-grid {
		text-align: left;
		justify-items: start;
	}

	.app-features-list {
		align-self: flex-start;
	}

	.app-buttons {
		width: 100%;
		gap: 9px;
		justify-content: center;
	}

	.btn-app-download {
		padding: 8px 14px;
		gap: 8px;
		flex: 1;
		max-width: 160px;
		justify-content: center;
		border-radius: 6px;
	}

	.btn-app-download .btn-large-text {
		font-size: 14px;
	}

	.btn-app-download .btn-small-text {
		font-size: 9px;
	}

	.app-image-wrapper {
		justify-self: center;
		max-width: 344px;
		margin-top: 16px;
	}

	/* Trainers Section Mobile */
	.trainers-section {
		padding: 40px 0;
	}

	.trainers-section::before {
		content: '';
		position: absolute;
		pointer-events: none;
		z-index: 0;
		width: 244px;
		height: 242px;
		border-radius: 50%;
		background: #BC0000;
		filter: blur(200px);
		top: -50px;
		left: -100px;
	}

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

	.trainers-header {
		text-align: center;
	}

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

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

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

	.trainers-carousel {
		height: 769px;
	}

	.trainers-carousel .trainer-card-wrapper {
		width: 343px;
		height: 769px;
		margin-right: 20px;
	}

	.trainers-carousel .trainer-card-wrapper .trainer-photo {
		width: 423px;
		height: 424px;
		left: -25.5px;
		top: 8px;
	}

	.trainers-carousel .trainer-card-wrapper .trainer-card-visual::before {
		left: -205.5px;
		top: 336px;
	}

	.trainers-carousel .trainer-card-wrapper .trainer-card-visual::after {
		left: 237.5px;
		top: -66px;
	}

	.trainers-carousel .trainer-card-wrapper .trainer-card-info {
		width: 343px;
		left: -0.5px;
	}

	/* Inactive mobile */
	.trainers-carousel .trainer-card-wrapper:not(.active) .trainer-card-info {
		top: 518px;
	}

	/* Active mobile */
	.trainers-carousel .trainer-card-wrapper.active .trainer-card-info {
		top: 311px;
	}


}

/* ==========================================================================
   Schedule Section (Розклад занять)
   ========================================================================== */

.schedule-section {
	padding: 80px 0;
	background-color: var(--color-black);
	color: var(--color-white);
	position: relative;
	z-index: 5;
	overflow: hidden;
}

/* Background LED blurred glow */
.schedule-section::before {
	content: '';
	position: absolute;
	pointer-events: none;
	z-index: 0;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	background: #BC0000;
	filter: blur(250px);
	top: 50%;
	left: -200px;
	transform: translateY(-50%);
	opacity: 0.4;
}

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

/* Header */
.schedule-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 40px;
	width: 100%;
}

.schedule-title-wrapper {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

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

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

.schedule-pdf-btn {
	background-color: #BC0000;
	padding: 16px 24px;
	font-family: var(--font-main);
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--color-white);
	border: none;
	cursor: pointer;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background-color var(--transition);

	display: none;
}

.schedule-pdf-btn:hover {
	background-color: #900000;
}

/* Filters Panel */
.schedule-filters-panel {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	margin-bottom: 32px;
	gap: 24px;
}

/* Time tabs */
.schedule-time-tabs {
	border: 2px solid #BC0000;
	display: inline-flex;
	height: 56px;
	padding: 8px;
	box-sizing: border-box;
	background: transparent;
	align-items: center;
}

.time-tab {
	padding: 12px 16px;
	font-family: var(--font-main);
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--color-white);
	background: transparent;
	border: none;
	cursor: pointer;
	transition: background-color 0.2s, color 0.2s;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	line-height: 1;
}

.time-tab.active {
	background-color: #BC0000;
	box-shadow: 0px 1px 1px rgba(145, 158, 171, 0.16);
}

/* Dropdowns */
.schedule-dropdowns {
	display: flex;
	gap: 17px;
	align-items: center;
}

.schedule-dropdown {
	position: relative;
	width: 270px;
	user-select: none;
}

.dropdown-trigger {
	border: 2px solid #363636;
	height: 56px;
	padding: 10px 14px;
	box-sizing: border-box;
	color: var(--color-white);
	font-family: var(--font-main);
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	transition: border-color 0.2s;
}

.schedule-dropdown.is-active .dropdown-trigger,
.schedule-dropdown.has-value .dropdown-trigger {
	border-color: #BC0000;
}

.dropdown-trigger .chevron-icon {
	width: 20px;
	height: 20px;
	transition: transform 0.2s;
}

.schedule-dropdown.is-active .chevron-icon {
	transform: rotate(180deg);
}

.dropdown-list {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: #171717;
	border: 2px solid #363636;
	border-top: none;
	z-index: 100;
	max-height: 280px;
	overflow-y: auto;
	display: none;
	margin-top: 2px;
	box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5);
}

.schedule-dropdown.is-active .dropdown-list {
	display: block;
}

.dropdown-option {
	padding: 12px 14px;
	font-family: var(--font-main);
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	text-transform: uppercase;
	color: #A9A9A9;
	transition: background-color 0.2s, color 0.2s;
}

.dropdown-option:hover,
.dropdown-option.active {
	background-color: #BC0000;
	color: var(--color-white);
}

/* Days Selector */
.schedule-days-selector-wrapper {
	display: grid;
	grid-template-columns: 88px repeat(6, 1fr);
	gap: 4px;
	align-items: center;
	width: 100%;
	margin-top: 32px;
	box-sizing: border-box;
}

.day-nav-btn {
	display: none;
	/* Hide on desktop */
	background: transparent;
	border: none;
	color: var(--color-white);
	cursor: pointer;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	flex-shrink: 0;
	transition: opacity 0.2s;
}

.schedule-days-wrapper {
	grid-column: 2 / span 6;
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 4px;
}

.schedule-day-btn {
	background-color: #171717;
	border: 1px solid transparent;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
	height: 80px;
	color: var(--color-white);
	cursor: pointer;
	transition: background-color 0.2s, color 0.2s, border-color 0.2s;
	padding: 8px;
	box-sizing: border-box;
}

.schedule-day-btn .day-name {
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	font-family: var(--font-main);
}

.schedule-day-btn .day-date {
	font-size: 16px;
	font-weight: 600;
	font-family: var(--font-main);
	color: var(--color-white);
	opacity: 0.6;
}

.schedule-day-btn.active {
	background-color: var(--color-white);
	border-color: #BC0000;
	color: #BC0000;
}

.schedule-day-btn.active .day-date {
	color: #BC0000;
	opacity: 1;
}

/* Schedule Board (Desktop Grid) */
.schedule-desktop-board {
	display: grid;
	grid-template-columns: 88px repeat(6, 1fr);
	gap: 4px;
	margin-top: 32px;
	position: relative;
}

/* Row labels column on the left */
.schedule-time-label {
	background-color: #171717;
	color: var(--color-white);
	font-family: var(--font-main);
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8px;
	box-sizing: border-box;
	grid-column: 1;
	height: 100%;
	z-index: 2;
}

/* Cards */
.schedule-card {
	background-color: #BC0000;
	color: var(--color-white);
	padding: 8px;
	display: flex;
	flex-direction: column;
	gap: 4px;
	text-align: left;
	box-sizing: border-box;
	position: relative;
	transition: transform 0.2s, background-color 0.2s;
	z-index: 2;
}

.schedule-card:hover {
	background-color: #900000;
}

.schedule-card .card-title {
	font-family: var(--font-heading);
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0;
	line-height: 1.2;
}

.schedule-card .card-trainer {
	font-family: var(--font-main);
	font-size: 16px;
	font-weight: 400;
	color: var(--color-white);
	margin: 0;
}

.schedule-card .card-time {
	font-family: var(--font-main);
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	margin-top: 0;
	margin-bottom: 0;
}

/* Grid placement rules for Desktop */
.schedule-desktop-board .schedule-empty-cell {
	background-color: #171717;
	z-index: 1;
	pointer-events: none;
}

.schedule-desktop-board .schedule-card {
	grid-row-start: var(--row-start);
	grid-row-end: var(--row-end);
	justify-self: start;
	width: calc(var(--col-width, 100%) - 2px);
	margin-left: calc(var(--col-left, 0%) + 1px);
}

.schedule-desktop-board .schedule-card.day-mon {
	grid-column: 2;
}

.schedule-desktop-board .schedule-card.day-tue {
	grid-column: 3;
}

.schedule-desktop-board .schedule-card.day-wed {
	grid-column: 4;
}

.schedule-desktop-board .schedule-card.day-thu {
	grid-column: 5;
}

.schedule-desktop-board .schedule-card.day-fri {
	grid-column: 6;
}

.schedule-desktop-board .schedule-card.day-sat {
	grid-column: 7;
}

@media (min-width: 1024px) {

	.schedule-desktop-board .schedule-card[style*="--row-start: 5"][style*="--row-end: 9"] .card-title,
	.schedule-desktop-board .schedule-card[style*="--row-start: 1"][style*="--row-end: 5"] .card-title,
	.schedule-desktop-board .schedule-card[style*="--row-start: 4"][style*="--row-end: 7"] .card-title {
		font-size: 13px;
	}

	.schedule-desktop-board .schedule-card[style*="--row-start: 5"][style*="--row-end: 9"] .card-trainer,
	.schedule-desktop-board .schedule-card[style*="--row-start: 1"][style*="--row-end: 5"] .card-trainer {
		font-size: 13px;
	}

	.schedule-desktop-board .schedule-card[style*="--row-start: 5"][style*="--row-end: 9"] .card-time,
	.schedule-desktop-board .schedule-card[style*="--row-start: 1"][style*="--row-end: 5"] .card-time {
		font-size: 14px;
	}
}

/* Empty state */
.schedule-empty-state {
	background-color: #BC0000;
	width: 100%;
	padding: 60px 24px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 32px;
}

.empty-state-text {
	font-family: var(--font-heading);
	font-size: 32px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--color-white);
	margin: 0;
	text-align: center;
}

/* Responsive styles for Schedule Section */
@media (max-width: 1280px) {
	.schedule-dropdown {
		width: 220px;
	}
}

@media (max-width: 1024px) {
	.schedule-header {
		flex-direction: column;
		gap: 24px;
	}

	.schedule-pdf-btn {
		width: 100%;
	}

	.schedule-filters-panel {
		flex-direction: column;
		align-items: stretch;
		gap: 16px;
	}

	.schedule-time-tabs {
		width: 100%;
	}

	.time-tab {
		flex: 1;
		font-size: 14px;
		font-weight: 400;
		letter-spacing: 0.22px;
	}

	.schedule-dropdowns {
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
	}

	.schedule-dropdown {
		width: 100%;
	}
}

@media (max-width: 768px) {
	.schedule-section {
		padding: 40px 0;
	}

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

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

	.schedule-days-selector-wrapper {
		display: flex;
		justify-content: space-between;
		align-items: center;
		overflow: hidden;
		gap: 8px;
		margin-top: 24px;
	}

	.day-nav-btn {
		display: flex;
		opacity: 1;
		pointer-events: auto;
		padding: 0;
		color: var(--color-white);
	}

	.schedule-days-wrapper {
		display: flex;
		overflow-x: auto;
		flex-grow: 1;
		min-width: 0;
		gap: 4px;
		scroll-behavior: smooth;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		grid-column: auto;
	}

	.schedule-days-wrapper::-webkit-scrollbar {
		display: none;
	}

	.schedule-day-btn {
		flex: 0 0 calc(33.333% - 3px);
		max-width: none;
		height: 80px;
		gap: 8px;
	}

	.schedule-day-btn .day-name {
		font-size: 12px;
		font-weight: 600;
	}

	.schedule-day-btn .day-date {
		font-size: 10px;
		font-weight: 600;
	}

	/* Mobile schedule items list style (linear) */
	.schedule-mobile-list {
		display: flex;
		flex-direction: column;
		gap: 9px;
		margin-top: 24px;
	}

	.schedule-mobile-list .schedule-card {
		height: 109px;
		padding: 8px;
		background-color: #BC0000;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		gap: 8px;
		width: 100%;
	}

	.schedule-mobile-list .schedule-card .card-title {
		font-size: 20px;
	}

	.schedule-mobile-list .schedule-card .card-trainer {
		font-size: 16px;
	}

	.schedule-mobile-list .schedule-card .card-time {
		font-size: 16px;
		margin-top: 0;
	}

	.schedule-empty-state {
		padding: 40px 16px;
	}

	.empty-state-text {
		font-size: 24px;
	}
}

/* ===== NEW ZONES GRID & MULTI-COLUMNS LAYOUT STYLES ===== */
.zone-single-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.zone-buttons-wrapper {
	display: flex;
	gap: 32px;
	align-items: center;
	margin-top: 32px;
	flex-wrap: wrap;
}

.zone-buttons-wrapper .zone-btn {
	margin-top: 0 !important;
}

.zone-btn-outline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 24px;
	height: 52px;
	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;
	box-sizing: border-box;
	gap: 8px;
	background: transparent;
	cursor: pointer;
	text-decoration: none;
	transition: var(--transition);
}

.zone-btn-outline:hover {
	background-color: var(--color-white);
	color: var(--color-black) !important;
}

.zone-btn-outline:hover i {
	color: var(--color-black) !important;
}

.zone-btn-outline i {
	font-size: 18px;
	color: var(--color-white);
	transition: var(--transition);
}

.zone-multi-cols-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 40px;
	width: 100%;
	align-items: stretch;
	margin-top: 40px;
}

.zone-grid-col {
	display: flex;
	flex-direction: column;
	background: rgba(125, 125, 125, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 0;
	box-sizing: border-box;
	transition: var(--transition);
}

.zone-grid-col:hover {
	border-color: rgba(255, 255, 255, 0.2);
}

.zone-col-media-wrapper {
	position: relative;
	width: 100%;
	height: 280px;
	overflow: hidden;
}

.zone-col-media-wrapper .zone-single-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

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

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

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

.zone-col-info {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex-grow: 1;
	padding: 24px;
	box-sizing: border-box;
}

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

.zone-col-desc {
	font-family: var(--font-main);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
	color: var(--color-white);
	margin-bottom: 24px;
}

.zone-col-desc p {
	margin: 0;
}

.zone-col-buttons {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: auto;
}

.zone-col-buttons .zone-btn {
	width: 100%;
	max-width: unset;
	margin-top: 0 !important;
}

.zone-col-buttons .zone-btn-outline {
	width: 100%;
	max-width: unset;
	margin-top: 0 !important;
}

/* Flickity built-in arrow overrides for column carousel */
.zone-col-carousel .flickity-prev-next-button {
	width: 32px;
	height: 32px;
	background: var(--color-red);
	border-radius: 0;
	color: var(--color-white);
	opacity: 0.8;
	transition: var(--transition);
}

.zone-col-carousel .flickity-prev-next-button:hover {
	background: #a00000;
	opacity: 1;
}

.zone-col-carousel .flickity-prev-next-button.previous {
	left: 10px;
}

.zone-col-carousel .flickity-prev-next-button.next {
	right: 10px;
}

.zone-col-carousel .flickity-button-icon {
	fill: currentColor;
}

@media (max-width: 768px) {
	.zone-multi-cols-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.zone-grid-col {
		border: none;
		background: transparent;
		padding: 0;
	}

	.zone-col-media-wrapper {
		height: 240px;
	}

	.zone-col-info {
		padding: 20px 0 0 0;
	}

	.zone-buttons-wrapper {
		flex-direction: column;
		gap: 16px;
		align-items: stretch;
		width: 100%;
	}

	.zone-buttons-wrapper .zone-btn,
	.zone-buttons-wrapper .zone-btn-outline {
		width: 100% !important;
		max-width: unset !important;
		text-align: center;
	}

	.membership-marquee-item {
		font-size: 16px;
	}
}