* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Montserrat', sans-serif;
	background: #0a0e13;
	color: #fed9b1;
	line-height: 1.6;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}

/* Background Image with Overlay */
body::after {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(10, 14, 19, 0.8) 0%, rgba(5, 7, 9, 0.9) 100%);
	z-index: -1;
	pointer-events: none;
}

/* Header */
.tour-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(10, 14, 19, 0.95);
	backdrop-filter: blur(10px);
	padding: 20px 40px;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo {
	font-size: 32px;
	font-weight: 900;
	color: #fed9b1;
	letter-spacing: 0.1em;
	text-decoration: none;
}

.header-buttons {
	display: flex;
	gap: 16px;
}

.header-btn {
	background: transparent;
	border: 2px solid #fed9b1;
	border-radius: 8px;
	color: #fed9b1;
	padding: 12px 32px;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
}

.header-btn:hover {
	background: #fed9b1;
	color: #0a0e13;
	transform: translateY(-2px);
}

/* Navigation Tabs */
.nav-tabs {
	display: flex;
	gap: 16px;
	justify-content: center;
	margin-top: 30px;
}

.nav-tab {
	background: #283542;
	border: none;
	border-radius: 20px;
	color: #fed9b1;
	padding: 16px 40px;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
}

.nav-tab:hover, .nav-tab.active {
	background: #1a2028;
	transform: translateY(-2px);
}

/* Content Section */
.content-section {
	max-width: 1600px;
	margin: 0 auto 80px;
	padding: 0 40px;
	margin-bottom:10px;
}

.main-content .content-section { max-width:100%; }

.main-content.no-margin-top { margin-top:0; }

.content-section-footer {
	display:inline-block; width:100%; text-align:center;
}

.content-section-footer a {
	display: inline-block;
	padding: 12px 32px;
	border: 1px solid #fed9b1;
	border-radius: 50px;
	color: #fed9b1;
	text-decoration: none;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.05em;
	transition: all 0.3s ease;
	opacity: 0.7;
	margin-bottom: 30px;
	text-transform: uppercase
}

.content-section-footer a:hover {
	opacity: 1;
	background: rgba(254, 217, 177, 0.1);
}

.section-title {
	font-size: 28px;
	font-weight: 800;
	color: #fed9b1;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 32px;
}

.content-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.content-card {
	/*background: #1a2028;*/
	border-radius: 12px;
	overflow: hidden;
	transition: transform 0.3s ease;
	cursor: pointer;
	width:100%;
}

.content-card:hover {
	transform: translateY(-4px);
}

.card-image {
	width: 100%;
	/*height: 200px;*/
	background: #283542;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fed9b1;
	font-size: 12px;
	font-weight: 600;
}

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

.card-label {
	padding: 12px;
	text-align: center;
	font-size: 12px;
	font-weight: 700;
	color: #fed9b1;
	letter-spacing: 0.05em;
}

/* CTA Section */
.cta-section {
	text-align: center;
	padding: 60px 40px;
	max-width: 800px;
	margin: 0 auto 80px;
}

.cta-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	margin-bottom: 60px;
}

.cta-btn {
	background: transparent;
	border: 2px solid #fed9b1;
	border-radius: 8px;
	color: #fed9b1;
	padding: 16px 48px;
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
}

.cta-btn:hover {
	background: #fed9b1;
	color: #0a0e13;
	transform: translateY(-2px);
}

/* What's Hot Section */
.whats-hot {
	max-width: 1600px;
	margin: 0 auto 80px;
	padding: 0 40px;
}

.whats-hot-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.whats-hot-card {
	background: #1a2028;
	border-radius: 12px;
	overflow: hidden;
	height: 400px;
}

.whats-hot-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Footer */
.tour-footer {
	background: rgba(10, 14, 19, 0.95);
	padding: 40px;
	text-align: center;
}

.compliance-link {
	display: inline-block;
	padding: 12px 32px;
	border: 1px solid #fed9b1;
	border-radius: 50px;
	color: #fed9b1;
	text-decoration: none;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.05em;
	transition: all 0.3s ease;
	opacity: 0.7;
	margin-bottom: 30px;
}

.compliance-link:hover {
	opacity: 1;
	background: rgba(254, 217, 177, 0.1);
}

.footer-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}

.footer-link {
	color: #fed9b1;
	text-decoration: none;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.05em;
	opacity: 0.6;
	transition: opacity 0.3s ease;
	text-transform: uppercase;
}

.footer-link:hover {
	opacity: 1;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
	.content-grid,
	.whats-hot-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 768px) {
	body { padding-top:160px; }
	.tour-header {
		padding: 15px 20px;
		flex-direction:column;
		gap:8px;
	}

	.logo {
		font-size: 24px;
	}

	.header-btn {
		padding: 6px 20px;
		font-size: 12px;
	}

	.main-nav { top:100px; padding:12px 12px !important; }

	.hero-section {
		margin-top:0;
		padding: 0 12px 40px;
	}

	.hero-carousel {
		height: 300px;
	}

	.nav-tabs {
		flex-wrap: wrap;
	}

	.nav-tab {
		padding: 12px 24px;
		font-size: 12px;
	}

	.content-grid,
	.whats-hot-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
		margin-bottom:12px;
	}

	.content-section { padding:0 12px; margin-bottom:24px; }
	.content-section-footer a { margin-bottom:12px; }

	.section-title {
		font-size: 20px;
		line-height:125%;
	}
	.section-sub-title { margin-top:12px; }

	.cta-section { padding:24px 40px; margin-bottom:24px; }
	.cta-buttons {
		flex-direction: column;
		margin-bottom:0;
	}

	.cta-btn {
		width: 100%;
	}
	.hero-slide-title { display:none; }
}

@media (max-width: 480px) {
	body { padding-top:105px; }
	.content-grid,
	.whats-hot-grid {
		grid-template-columns: 1fr;
	}

	.carousel-arrow {
		width: 40px;
		height: 40px;
		font-size: 24px;
	}
}