/* ==========================================================================
   1. Theme Reset & Variables
   ========================================================================== */
:root {
	--color-brand: #E83E15;
	--color-brand-hover: #c9300c;
	--color-dark: #1A1A1A;
	--color-light: #F8F9FA;
	--color-border: #E5E7EB;
	--font-primary: 'Plus Jakarta Sans', sans-serif;
	--font-logo: 'Outfit', sans-serif;
	--container-width: 1200px;
	--transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
	font-family: var(--font-primary);
	color: var(--color-dark);
	background-color: #ffffff;
	-webkit-font-smoothing: antialiased;
}

a {
	text-decoration: none;
	color: inherit;
	transition: var(--transition-smooth);
}

/* ==========================================================================
   2. Layout Utilities
   ========================================================================== */
.header-container {
	width: 100%;
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 20px;
}

/* ==========================================================================
   3. Header Styling
   ========================================================================== */
.site-header {
	width: 100%;
	position: relative;
	z-index: 1000;
	background-color: #ffffff;
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
}

/* --- Header Top --- */
.header-top {
	padding: 15px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-top-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

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

.logo-link {
	display: block;
}

.logo-image {
	max-height: 80px;
	width: auto;
	display: block;
}

/* --- Contact Info --- */
.header-contact-info {
	display: flex;
	align-items: center;
	gap: 25px;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-primary);
	font-weight: 600;
	font-size: 15px;
	color: #2D3748;
}

.contact-icon {
	color: var(--color-brand);
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact-link:hover {
	color: var(--color-brand);
}

/* --- WhatsApp Button --- */
.wa-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	border: 2px solid var(--color-brand);
	border-radius: 6px;
	background-color: transparent;
	color: #2D3748;
	font-family: var(--font-primary);
	font-weight: 700;
	font-size: 15px;
	transition: var(--transition-smooth);
}

.wa-btn-icon {
	color: var(--color-brand);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition-smooth);
}

.wa-btn:hover {
	background-color: var(--color-brand);
	color: #ffffff;
}

.wa-btn:hover .wa-btn-icon {
	color: #ffffff;
}

/* --- Mobile Quick Actions --- */
.mobile-header-actions {
	display: none;
	align-items: center;
	gap: 15px;
}

.mobile-wa-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid var(--color-brand);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-brand);
	background: transparent;
	transition: var(--transition-smooth);
}

.mobile-wa-icon:hover {
	background: var(--color-brand);
	color: #ffffff;
}

/* --- Navigation Bar --- */
.header-nav {
	background-color: var(--color-brand);
	transition: var(--transition-smooth);
}

.header-nav-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* --- Navigation Menu --- */
.main-navigation {
	display: block;
}

.nav-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
}

.nav-menu .menu-item {
	position: relative;
}

.nav-menu .menu-item a {
	display: block;
	padding: 18px 20px;
	color: #ffffff;
	font-weight: 700;
	font-size: 15px;
	letter-spacing: 0.3px;
	text-transform: capitalize;
	position: relative;
}

.nav-menu .menu-item a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 20px;
	right: 20px;
	height: 3px;
	background-color: #ffffff;
	transform: scaleX(0);
	transition: var(--transition-smooth);
}

.nav-menu .menu-item:hover a::after,
.nav-menu .menu-item.current-menu-item a::after {
	transform: scaleX(1);
}

.nav-menu .menu-item a:hover {
	color: rgba(255, 255, 255, 0.9);
}

/* --- Social Links --- */
.header-socials {
	display: flex;
	align-items: center;
	gap: 10px;
}

.social-icon {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background-color: #ffffff;
	color: var(--color-brand);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition-smooth);
}

.social-icon:hover {
	background-color: var(--color-dark);
	color: #ffffff;
	transform: translateY(-2px);
}

/* ==========================================================================
   4. Mobile Hamburger Button
   ========================================================================== */
.menu-toggle-btn {
	display: none;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 8px;
	z-index: 1001;
	outline: none;
}

.hamburger-box {
	width: 24px;
	height: 18px;
	display: inline-block;
	position: relative;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
	width: 24px;
	height: 2px;
	background-color: var(--color-brand);
	position: absolute;
	transition: var(--transition-smooth);
}

.hamburger-inner {
	top: 50%;
	transform: translateY(-50%);
}

.hamburger-inner::before {
	content: '';
	top: -7px;
}

.hamburger-inner::after {
	content: '';
	bottom: -7px;
}

/* Toggle Animation */
.menu-toggle-btn.is-active .hamburger-inner {
	background-color: transparent;
}

.menu-toggle-btn.is-active .hamburger-inner::before {
	transform: rotate(45deg);
	top: 0;
}

.menu-toggle-btn.is-active .hamburger-inner::after {
	transform: rotate(-45deg);
	bottom: 0;
}

/* ==========================================================================
   5. Responsive Styles
   ========================================================================== */
@media (max-width: 992px) {
	/* Hide desktop elements */
	.header-contact-info {
		display: none;
	}

	/* Hide mobile WhatsApp icon */
	.mobile-wa-icon {
		display: none;
	}
	
	.mobile-header-actions,
	.menu-toggle-btn {
		display: flex;
	}

	.menu-toggle-btn {
		margin-right: 15px;
	}

	.header-top {
		padding: 10px 0;
	}

	.logo-image {
		max-height: 80px;
	}

	/* Navigation Overlay / Drawer */
	.header-nav {
		position: absolute;
		top: 101px;
		left: 0;
		right: 0;
		background-color: var(--color-brand);
		width: 100%;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
		border-top: 1px solid rgba(255, 255, 255, 0.1);
		box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
		z-index: 1001;
	}

	.header-nav.is-active {
		max-height: 450px;
	}

	.header-nav-inner {
		flex-direction: column;
		padding: 20px 0;
		gap: 20px;
	}

	.main-navigation {
		width: 100%;
	}

	.nav-menu {
		flex-direction: column;
		width: 100%;
	}

	.nav-menu .menu-item {
		width: 100%;
		text-align: center;
	}

	.nav-menu .menu-item a {
		padding: 14px 20px;
		width: 100%;
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	}

	.nav-menu .menu-item a::after {
		display: none;
	}

	.nav-menu .menu-item:hover a {
		background-color: rgba(255, 255, 255, 0.05);
	}

	.header-socials {
		justify-content: center;
		width: 100%;
		padding-top: 10px;
	}
	
	/* Prevent scrolling when menu is active */
	body.menu-open {
		overflow: hidden;
	}
}

@media (max-width: 480px) {
	.logo-image {
		max-height: 70px;
	}
	
	.header-nav {
		top: 91px;
	}
}

/* ==========================================================================
   6. Hero Section
   ========================================================================== */
.hero-section {
	position: relative;
	background-size: cover;
	background-position: right top;
	background-repeat: no-repeat;
	min-height: 550px;
	display: flex;
	align-items: center;
	color: #ffffff;
	overflow: hidden;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.55) 45%, rgba(0, 0, 0, 0) 80%);
	z-index: 1;
}

.hero-content-wrapper {
	position: relative;
	z-index: 2;
	width: 100%;
}

.hero-content-inner {
	max-width: 580px;
	padding: 100px 0;
}

.hero-title {
	font-family: var(--font-logo);
	font-weight: 800;
	font-size: 46px;
	line-height: 1.25;
	color: #ffffff;
	margin: 0 0 20px 0;
}

.hero-description {
	font-family: var(--font-primary);
	font-size: 15px;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.9);
	margin: 0 0 35px 0;
	font-weight: 400;
}

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

.hero-btn {
	display: inline-block;
	background-color: var(--color-brand);
	color: #ffffff;
	font-family: var(--font-primary);
	font-weight: 700;
	font-size: 15px;
	letter-spacing: 0.8px;
	padding: 14px 32px;
	border-radius: 4px;
	transition: var(--transition-smooth);
	border: 1px solid var(--color-brand);
}

.hero-btn:hover {
	background-color: var(--color-brand-hover);
	border-color: var(--color-brand-hover);
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(232, 62, 21, 0.3);
}

.hero-btn-secondary {
	background-color: transparent;
	border-color: #ffffff;
	color: #ffffff;
}

.hero-btn-secondary:hover {
	background-color: #ffffff;
	border-color: #ffffff;
	color: var(--color-brand);
	box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   7. Hero Section Responsive
   ========================================================================== */
@media (max-width: 992px) {
	.hero-section {
		min-height: 550px;
		background-position: 80% center;
	}

	.hero-overlay {
		background: rgba(0, 0, 0, 0.65);
	}

	.hero-content-inner {
		max-width: 100%;
		text-align: center;
		padding: 70px 0;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.hero-title {
		font-size: 34px;
	}

	.hero-description {
		max-width: 600px;
	}

	.hero-actions {
		justify-content: center;
		width: 100%;
	}
}

@media (max-width: 480px) {
	.hero-section {
		min-height: 480px;
	}

	.hero-content-inner {
		padding: 50px 0;
	}

	.hero-title {
		font-size: 26px;
	}

	.hero-description {
		font-size: 14px;
		line-height: 1.55;
	}

	.hero-btn {
		padding: 12px 28px;
		font-size: 14px;
	}
}

/* ==========================================================================
   8. About Section
   ========================================================================== */
.about-section {
	padding: 90px 0;
	background-color: #ffffff;
}

.about-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 60px;
	align-items: center;
}

.about-content {
	display: flex;
	justify-content: center;
	width: 100%;
}

.about-content-inner {
	max-width: 540px;
	width: 100%;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.about-overline {
	font-family: var(--font-logo);
	font-weight: 800;
	font-size: 24px;
	color: var(--color-dark);
	margin: 0 0 5px 0;
}

.about-title {
	font-family: var(--font-logo);
	font-weight: 300;
	font-size: 38px;
	color: var(--color-dark);
	margin: 0 0 25px 0;
	letter-spacing: -0.5px;
}

.about-description {
	font-family: var(--font-primary);
	font-size: 15px;
	line-height: 1.75;
	color: #555555;
	margin-bottom: 35px;
}

.about-highlight {
	color: var(--color-brand);
	font-weight: 700;
}

.about-btn {
	display: inline-block;
	background-color: var(--color-brand);
	color: #ffffff;
	font-family: var(--font-primary);
	font-weight: 700;
	font-size: 15px;
	padding: 14px 32px;
	border-radius: 4px;
	transition: var(--transition-smooth);
	border: 1px solid var(--color-brand);
}

.about-btn:hover {
	background-color: var(--color-brand-hover);
	border-color: var(--color-brand-hover);
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(232, 62, 21, 0.2);
}

.about-media {
	width: 100%;
}

.about-image-wrapper {
	position: relative;
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.about-img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	max-height: 520px;
}

/* ==========================================================================
   9. About Section Responsive
   ========================================================================== */
@media (max-width: 992px) {
	.about-section {
		padding: 70px 0;
	}

	.about-grid {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.about-media {
		order: 2;
	}

	.about-content-inner {
		max-width: 650px;
	}

	.about-img {
		max-height: 450px;
	}
}

@media (max-width: 480px) {
	.about-section {
		padding: 50px 0;
	}

	.about-overline {
		font-size: 20px;
	}

	.about-title {
		font-size: 30px;
		margin-bottom: 20px;
	}

	.about-description {
		font-size: 14px;
		line-height: 1.65;
		margin-bottom: 25px;
	}

	.about-btn {
		padding: 12px 28px;
		font-size: 14px;
	}
}

/* ==========================================================================
   10. Jeep Section
   ========================================================================== */
.jeep-section {
	padding: 95px 0;
	background-color: var(--color-light);
}

.jeep-section-header {
	text-align: center;
	margin-bottom: 40px;
}

.jeep-title {
	font-family: var(--font-logo);
	font-size: 38px;
	font-weight: 800;
	color: var(--color-dark);
	margin: 0 0 15px 0;
	letter-spacing: -0.5px;
}

.jeep-subtitle {
	font-family: var(--font-primary);
	font-size: 15px;
	line-height: 1.65;
	color: #666666;
	max-width: 650px;
	margin: 0 auto;
}

.jeep-filter-bar {
	display: flex;
	justify-content: center;
	margin-bottom: 55px;
}

.filter-input-wrapper {
	display: flex;
	background: #ffffff;
	border-radius: 30px;
	padding: 5px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
	width: 100%;
	max-width: 500px;
	border: 1px solid var(--color-border);
}

.filter-input {
	flex: 1;
	border: none;
	outline: none;
	padding: 8px 20px;
	font-family: var(--font-primary);
	font-size: 14px;
	border-radius: 30px;
	color: var(--color-dark);
}

.filter-btn {
	background-color: var(--color-brand);
	color: #ffffff;
	border: none;
	cursor: pointer;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition-smooth);
}

.filter-btn:hover {
	background-color: var(--color-brand-hover);
	transform: scale(1.05);
}

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

.jeep-card {
	background: #ffffff;
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
	transition: var(--transition-smooth);
	display: flex;
	flex-direction: column;
	border: 1px solid rgba(0, 0, 0, 0.03);
}

.jeep-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.jeep-card-media {
	position: relative;
	padding-top: 68%;
	overflow: hidden;
	background-color: #eee;
}

.jeep-card-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center bottom;
	transition: var(--transition-smooth);
}

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

.jeep-card-content {
	padding: 20px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.jeep-card-tag {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	color: #888888;
	letter-spacing: 0.8px;
	margin-bottom: 8px;
	display: inline-block;
}

.jeep-card-title {
	font-family: var(--font-logo);
	font-size: 17px;
	font-weight: 800;
	color: var(--color-dark);
	margin: 0 0 10px 0;
	line-height: 1.35;
}

.jeep-card-rating {
	display: flex;
	gap: 2px;
	color: #FFB800;
	margin-bottom: 20px;
}

.jeep-card-footer {
	margin-top: auto;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 12px;
	border-top: 1px solid var(--color-border);
	padding-top: 15px;
}

.jeep-card-price {
	display: flex;
	flex-direction: column;
}

.price-label {
	font-size: 10px;
	color: #999999;
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 2px;
}

.price-amount {
	font-family: var(--font-logo);
	font-size: 16px;
	font-weight: 900;
	color: var(--color-brand);
}

.price-unit {
	font-size: 11px;
	color: #666666;
	font-weight: 500;
}

.jeep-card-btn {
	background-color: var(--color-brand);
	color: #ffffff;
	font-family: var(--font-primary);
	font-weight: 700;
	font-size: 13px;
	padding: 11px 16px;
	border-radius: 4px;
	transition: var(--transition-smooth);
	border: 1px solid var(--color-brand);
	text-align: center;
	display: block;
	width: 100%;
}

.jeep-card-btn:hover {
	background-color: var(--color-brand-hover);
	border-color: var(--color-brand-hover);
}

/* ==========================================================================
   11. Jeep Section Responsive
   ========================================================================== */
@media (max-width: 1200px) {
	.jeep-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}
}

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

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

	.jeep-filter-bar {
		margin-bottom: 40px;
	}
}

@media (max-width: 576px) {
	.jeep-section {
		padding: 50px 0;
	}

	.jeep-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.jeep-title {
		font-size: 28px;
	}

	.jeep-subtitle {
		font-size: 14px;
		line-height: 1.55;
	}

	.filter-input {
		padding: 8px 15px;
		font-size: 13px;
	}
}

/* ==========================================================================
   12. Booking Modal Styling
   ========================================================================== */
.booking-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2000;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

.booking-modal.is-active {
	opacity: 1;
	pointer-events: auto;
}

.booking-modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.65);
	backdrop-filter: blur(4px);
}

.booking-modal-content {
	position: relative;
	z-index: 2;
	background-color: #ffffff;
	width: 90%;
	max-width: 460px;
	padding: 40px;
	border-radius: 8px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
	transform: scale(0.9);
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.booking-modal.is-active .booking-modal-content {
	transform: scale(1);
}

.booking-modal-close {
	position: absolute;
	top: 15px;
	right: 20px;
	border: none;
	background: transparent;
	font-size: 32px;
	line-height: 1;
	cursor: pointer;
	color: #999999;
	transition: var(--transition-smooth);
	padding: 5px;
}

.booking-modal-close:hover {
	color: var(--color-brand);
}

.modal-title {
	font-family: var(--font-logo);
	font-size: 24px;
	font-weight: 850;
	margin: 0 0 25px 0;
	color: var(--color-dark);
	text-align: center;
	letter-spacing: -0.5px;
}

.booking-form {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.form-group label {
	font-family: var(--font-primary);
	font-size: 13px;
	font-weight: 700;
	color: #4A5568;
}

.form-group input {
	padding: 12px 16px;
	border: 1px solid var(--color-border);
	border-radius: 6px;
	font-family: var(--font-primary);
	font-size: 15px;
	color: var(--color-dark);
	transition: var(--transition-smooth);
}

.form-group input:focus {
	border-color: var(--color-brand);
	outline: none;
	box-shadow: 0 0 0 3px rgba(232, 62, 21, 0.15);
}

.form-group input[readonly] {
	background-color: #F8F9FA;
	color: #718096;
	cursor: not-allowed;
	border-color: #E2E8F0;
}

.booking-submit-btn {
	background-color: var(--color-brand);
	color: #ffffff;
	font-family: var(--font-primary);
	font-weight: 700;
	font-size: 15px;
	padding: 14px 20px;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	transition: var(--transition-smooth);
	margin-top: 10px;
	text-align: center;
}

.booking-submit-btn:hover {
	background-color: var(--color-brand-hover);
	box-shadow: 0 4px 15px rgba(232, 62, 21, 0.3);
}

/* Prevent scrolling when modal is open */
body.modal-open {
	overflow: hidden;
}

@media (max-width: 480px) {
	.booking-modal-content {
		padding: 30px 20px;
	}

	.modal-title {
		font-size: 20px;
		margin-bottom: 20px;
	}
}

/* ==========================================================================
   13. CTA Section
   ========================================================================== */
.cta-section {
	padding: 95px 0;
	background-color: #ffffff;
}

.cta-box {
	display: flex;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
	min-height: 440px;
}

.cta-media {
	flex: 1.1;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.cta-content {
	flex: 0.9;
	background-color: var(--color-brand);
	padding: 60px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	color: #ffffff;
}

.cta-title {
	font-family: var(--font-logo);
	font-size: 34px;
	font-weight: 800;
	color: #ffffff;
	margin: 0 0 20px 0;
	line-height: 1.25;
	letter-spacing: -0.5px;
}

.cta-description {
	font-family: var(--font-primary);
	font-size: 15px;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.9);
	margin: 0 0 35px 0;
}

.cta-actions {
	display: block;
}

.cta-btn {
	display: inline-block;
	background-color: transparent;
	color: #ffffff;
	border: 2px solid #ffffff;
	border-radius: 30px;
	font-family: var(--font-primary);
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.8px;
	padding: 12px 30px;
	transition: var(--transition-smooth);
}

.cta-btn:hover {
	background-color: #ffffff;
	color: var(--color-brand);
	box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   14. CTA Section Responsive
   ========================================================================== */
@media (max-width: 992px) {
	.cta-section {
		padding: 70px 0;
	}

	.cta-box {
		flex-direction: column;
		min-height: auto;
	}

	.cta-media {
		min-height: 320px;
		width: 100%;
	}

	.cta-content {
		width: 100%;
		padding: 50px 30px;
		text-align: center;
		align-items: center;
	}

	.cta-title {
		font-size: 28px;
	}
}

@media (max-width: 480px) {
	.cta-section {
		padding: 50px 0;
	}

	.cta-media {
		min-height: 240px;
	}

	.cta-content {
		padding: 40px 20px;
	}

	.cta-title {
		font-size: 24px;
	}

	.cta-description {
		font-size: 14px;
		line-height: 1.55;
		margin-bottom: 25px;
	}

	.cta-btn {
		padding: 10px 24px;
		font-size: 13px;
	}
}

/* ==========================================================================
   15. FAQ Section
   ========================================================================== */
.faq-section {
	padding: 95px 0;
	background-color: var(--color-light);
}

.faq-section-header {
	text-align: center;
	margin-bottom: 50px;
}

.faq-title {
	font-family: var(--font-logo);
	font-size: 38px;
	font-weight: 800;
	color: var(--color-dark);
	margin: 0 0 15px 0;
	letter-spacing: -0.5px;
}

.faq-subtitle {
	font-family: var(--font-primary);
	font-size: 15px;
	line-height: 1.65;
	color: #666666;
	max-width: 600px;
	margin: 0 auto;
}

.faq-list {
	max-width: 760px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.faq-item {
	background-color: #ffffff;
	border-radius: 8px;
	border: 1px solid var(--color-border);
	overflow: hidden;
	transition: var(--transition-smooth);
}

.faq-item:hover {
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.02);
}

.faq-question {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 22px 28px;
	background: transparent;
	border: none;
	cursor: pointer;
	text-align: left;
	outline: none;
}

.faq-question-text {
	font-family: var(--font-primary);
	font-size: 16px;
	font-weight: 700;
	color: var(--color-dark);
	padding-right: 20px;
	transition: var(--transition-smooth);
}

.faq-question:hover .faq-question-text {
	color: var(--color-brand);
}

.faq-icon-wrapper {
	color: #A0AEC0;
	transition: var(--transition-smooth);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.faq-icon-svg {
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.is-active .faq-icon-svg {
	transform: rotate(45deg);
}

.faq-item.is-active .faq-icon-wrapper {
	color: var(--color-brand);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-in-out;
}

.faq-answer-content {
	padding: 0 28px 22px 28px;
}

.faq-answer-content p {
	font-family: var(--font-primary);
	font-size: 14.5px;
	line-height: 1.7;
	color: #555555;
	margin: 0;
}

/* ==========================================================================
   16. FAQ Section Responsive
   ========================================================================== */
@media (max-width: 768px) {
	.faq-section {
		padding: 70px 0;
	}

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

	.faq-question {
		padding: 18px 22px;
	}

	.faq-answer-content {
		padding: 0 22px 18px 22px;
	}

	.faq-question-text {
		font-size: 15px;
	}
}

@media (max-width: 480px) {
	.faq-section {
		padding: 50px 0;
	}

	.faq-title {
		font-size: 28px;
	}

	.faq-subtitle {
		font-size: 14px;
		line-height: 1.55;
	}

	.faq-question {
		padding: 16px 18px;
	}

	.faq-answer-content {
		padding: 0 18px 16px 18px;
	}

	.faq-question-text {
		font-size: 14px;
		line-height: 1.4;
	}

	.faq-answer-content p {
		font-size: 13.5px;
		line-height: 1.6;
	}
}

/* ==========================================================================
   17. Gallery Section
   ========================================================================== */
.gallery-section {
	padding: 95px 0;
	background-color: #ffffff;
}

.gallery-section-header {
	text-align: center;
	margin-bottom: 50px;
}

.gallery-title {
	font-family: var(--font-logo);
	font-size: 38px;
	font-weight: 800;
	color: var(--color-dark);
	margin: 0 0 15px 0;
	letter-spacing: -0.5px;
}

.gallery-subtitle {
	font-family: var(--font-primary);
	font-size: 15px;
	line-height: 1.65;
	color: #666666;
	max-width: 700px;
	margin: 0 auto;
}

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

.gallery-item {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
	transition: var(--transition-smooth);
}

.gallery-media {
	position: relative;
	width: 100%;
	padding-top: 75%; /* 4:3 Aspect Ratio */
	overflow: hidden;
	background-color: var(--color-light);
}

.gallery-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center bottom;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(232, 62, 21, 0.85);
	opacity: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: var(--transition-smooth);
}

.gallery-icon-wrapper {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: #ffffff;
	color: var(--color-brand);
	display: flex;
	justify-content: center;
	align-items: center;
	transform: translateY(20px);
	transition: var(--transition-smooth);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.gallery-zoom-icon {
	stroke: var(--color-brand);
}

/* Hover States */
.gallery-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.gallery-item:hover .gallery-img {
	transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
	opacity: 1;
}

.gallery-item:hover .gallery-icon-wrapper {
	transform: translateY(0);
}

/* ==========================================================================
   18. Adventure Banner Section (Red/Orange CTA)
   ========================================================================== */
.adventure-banner-section {
	background-color: var(--color-brand);
	padding: 75px 0;
	text-align: left;
	position: relative;
	overflow: hidden;
}

.adventure-banner-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
	pointer-events: none;
}

.adventure-banner-content {
	max-width: 850px;
}

.adventure-banner-title {
	font-family: var(--font-logo);
	font-size: 30px;
	font-weight: 900;
	color: #ffffff;
	margin: 0 0 15px 0;
	letter-spacing: 0.5px;
	line-height: 1.3;
}

.adventure-banner-desc {
	font-family: var(--font-primary);
	font-size: 15px;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.9);
	margin: 0;
}

/* ==========================================================================
   19. Responsive Styling for Gallery & Adventure Banner
   ========================================================================== */
@media (max-width: 992px) {
	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
	
	.adventure-banner-title {
		font-size: 26px;
	}
}

@media (max-width: 768px) {
	.gallery-section {
		padding: 70px 0;
	}
	
	.gallery-title {
		font-size: 32px;
	}
	
	.adventure-banner-section {
		padding: 60px 0;
	}
	
	.adventure-banner-title {
		font-size: 22px;
	}
	
	.adventure-banner-desc {
		font-size: 14px;
		line-height: 1.55;
	}
}

@media (max-width: 480px) {
	.gallery-section {
		padding: 50px 0;
	}
	
	.gallery-title {
		font-size: 28px;
	}
	
	.gallery-subtitle {
		font-size: 14px;
		line-height: 1.55;
	}
	
	.gallery-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	
	.adventure-banner-section {
		padding: 50px 0;
	}
	
	.adventure-banner-title {
		font-size: 20px;
		letter-spacing: 0;
	}
}

/* ==========================================================================
   20. Gallery Lightbox Modal
   ========================================================================== */
.gallery-lightbox {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gallery-lightbox.is-active {
	opacity: 1;
	visibility: visible;
}

.lightbox-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.92);
}

.lightbox-content {
	position: relative;
	z-index: 10001;
	max-width: 90%;
	max-height: 85%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.lightbox-img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	border-radius: 4px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
	transform: scale(0.95);
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-lightbox.is-active .lightbox-img {
	transform: scale(1);
}

.lightbox-close {
	position: absolute;
	top: 25px;
	right: 30px;
	background: transparent;
	border: none;
	color: #ffffff;
	font-size: 45px;
	line-height: 1;
	cursor: pointer;
	z-index: 10002;
	transition: var(--transition-smooth);
	padding: 5px 10px;
}

.lightbox-close:hover {
	color: var(--color-brand);
}

.lightbox-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: #ffffff;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	cursor: pointer;
	z-index: 10002;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: var(--transition-smooth);
	outline: none;
}

.lightbox-btn:hover {
	background-color: var(--color-brand);
	border-color: var(--color-brand);
	color: #ffffff;
}

.lightbox-prev {
	left: 30px;
}

.lightbox-next {
	right: 30px;
}

/* Lightbox Responsive */
@media (max-width: 768px) {
	.lightbox-close {
		top: 15px;
		right: 15px;
		font-size: 38px;
	}

	.lightbox-btn {
		width: 44px;
		height: 44px;
	}

	.lightbox-prev {
		left: 15px;
	}

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

/* ==========================================================================
   21. Map Section
   ========================================================================== */
.map-section {
	padding: 95px 0;
	background-color: var(--color-light);
}

.map-section-header {
	text-align: center;
	margin-bottom: 50px;
}

.map-title {
	font-family: var(--font-logo);
	font-size: 38px;
	font-weight: 800;
	color: var(--color-dark);
	margin: 0 0 15px 0;
	letter-spacing: -0.5px;
}

.map-subtitle {
	font-family: var(--font-primary);
	font-size: 15px;
	line-height: 1.65;
	color: #666666;
	max-width: 600px;
	margin: 0 auto;
}

.map-wrapper {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
	background-color: #ffffff;
	border: 1px solid var(--color-border);
}

.map-wrapper iframe {
	display: block;
	width: 100%;
}

/* ==========================================================================
   22. Site Footer Section
   ========================================================================== */
.site-footer {
	background-color: #111111;
	color: #A0AEC0;
	font-family: var(--font-primary);
}

.footer-top-section {
	padding: 80px 0 50px 0;
	border-bottom: 1px solid #2D3748;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.5fr;
	gap: 40px;
}

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

.footer-logo-img {
	max-height: 80px;
	width: auto;
}

.footer-brand-desc {
	font-size: 14.5px;
	line-height: 1.7;
	color: #A0AEC0;
	margin: 0;
}

.footer-socials {
	display: flex;
	gap: 12px;
}

.footer-socials .social-icon {
	width: 38px;
	height: 38px;
	background-color: #1A202C;
	color: #A0AEC0;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: var(--transition-smooth);
}

.footer-socials .social-icon:hover {
	background-color: var(--color-brand);
	color: #ffffff;
	transform: translateY(-3px);
}

.footer-col-title {
	font-family: var(--font-logo);
	font-size: 18px;
	font-weight: 700;
	color: #ffffff;
	margin: 0;
	position: relative;
	padding-bottom: 12px;
}

.footer-col-title::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 35px;
	height: 3px;
	background-color: var(--color-brand);
	border-radius: 2px;
}

.footer-links-list,
.footer-hours-list,
.footer-contact-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
	font-size: 14.5px;
}

.footer-links-list a {
	color: #A0AEC0;
	transition: var(--transition-smooth);
}

.footer-links-list a:hover {
	color: #ffffff;
	padding-left: 5px;
}

.footer-hours-list li {
	line-height: 1.6;
}

.footer-hours-list li strong {
	color: #ffffff;
}

.footer-contact-list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	line-height: 1.5;
}

.footer-contact-list li .contact-icon {
	color: var(--color-brand);
	flex-shrink: 0;
	margin-top: 2px;
}

.footer-contact-list li a {
	color: #A0AEC0;
	transition: var(--transition-smooth);
}

.footer-contact-list li a:hover {
	color: #ffffff;
}

.contact-address {
	color: #A0AEC0;
}

/* Footer Bottom Section */
.footer-bottom-section {
	padding: 30px 0;
	background-color: #0A0F18;
}

.footer-bottom-inner {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 13.5px;
	color: #718096;
	text-align: center;
}

.footer-bottom-inner p {
	margin: 0;
}

.footer-bottom-inner a {
	color: #A0AEC0;
	font-weight: 500;
}

.footer-bottom-inner a:hover {
	color: #ffffff;
}

/* ==========================================================================
   23. Map & Footer Responsive Styling
   ========================================================================== */
@media (max-width: 992px) {
	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px;
	}
}

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

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

	.footer-top-section {
		padding: 60px 0 40px 0;
	}

	.footer-bottom-inner {
		flex-direction: column;
		gap: 10px;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.map-section {
		padding: 50px 0;
	}

	.map-title {
		font-size: 28px;
	}

	.map-subtitle {
		font-size: 14px;
		line-height: 1.55;
	}

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

	.footer-col {
		gap: 15px;
	}
}

/* ==========================================================================
   24. Scroll Animations (Lightweight Reveal)
   ========================================================================== */
.reveal {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
	will-change: transform, opacity;
}

.reveal.reveal-left {
	transform: translateX(-40px);
}

.reveal.reveal-right {
	transform: translateX(40px);
}

.reveal.active {
	opacity: 1;
	transform: translate(0) !important;
}

/* Staggered delay classes */
.reveal-delay-100 { transition-delay: 100ms; }
.reveal-delay-200 { transition-delay: 200ms; }
.reveal-delay-300 { transition-delay: 300ms; }
.reveal-delay-400 { transition-delay: 400ms; }
.reveal-delay-500 { transition-delay: 500ms; }

@media (prefers-reduced-motion: reduce) {
	.reveal {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}
}

/* ==========================================================================
   25. Sticky Bottom Mobile Navigation
   ========================================================================== */
.mobile-bottom-nav {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	height: 65px;
	background-color: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-top: 1px solid rgba(0, 0, 0, 0.06);
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
	display: none; /* Hide on desktop */
	justify-content: space-around;
	align-items: center;
	z-index: 9999;
	padding: 0 10px;
}

.mobile-bottom-nav-item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #718096;
	text-decoration: none;
	font-family: var(--font-primary);
	font-size: 11px;
	font-weight: 600;
	gap: 4px;
	transition: var(--transition-smooth);
	flex: 1;
	height: 100%;
}

.mobile-bottom-nav-item .nav-icon {
	color: #718096;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition-smooth);
}

.mobile-bottom-nav-item:hover,
.mobile-bottom-nav-item.current {
	color: var(--color-brand);
}

.mobile-bottom-nav-item:hover .nav-icon,
.mobile-bottom-nav-item.current .nav-icon {
	color: var(--color-brand);
	transform: translateY(-2px);
}

/* Specific colors for critical CTA items */
.mobile-bottom-nav-item.wa-item {
	position: relative;
}

.mobile-bottom-nav-item.wa-item:hover,
.mobile-bottom-nav-item.wa-item:active {
	color: #25D366;
}

.mobile-bottom-nav-item.wa-item:hover .nav-icon,
.mobile-bottom-nav-item.wa-item:active .nav-icon {
	color: #25D366;
}

.mobile-bottom-nav-item.tel-item:hover,
.mobile-bottom-nav-item.tel-item:active {
	color: #3182CE;
}

.mobile-bottom-nav-item.tel-item:hover .nav-icon,
.mobile-bottom-nav-item.tel-item:active .nav-icon {
	color: #3182CE;
}

/* Show bottom nav on mobile screens, and add body padding so content isn't cut off */
@media (max-width: 992px) {
	.mobile-bottom-nav {
		display: flex;
	}
	
	body {
		padding-bottom: 65px; /* Offset sticky footer height */
	}
}
