@import '../components/header/header.css';
@import '../components/footer/footer.css';
@import '../components/container/base.css';
@import '../components/modal/modal.css';

.journey_content {
	padding-top: 140px;
	background-color: #fff;
	width: 100%;
}

.journey_container_fix {
	display: block !important;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.journey_text_section {
	max-width: 660px;
	margin: 0 auto;
	text-align: left;
}

.journey_text_section p {
	font-size: 16px;
	line-height: 1.8;
	color: #333;
	margin-bottom: 25px;
}

.top_text {
	margin-bottom: 80px;
}
.mid_text {
	margin-top: 90px;
	margin-bottom: 80px;
}

.journey_gallery_block {
	width: 100%;
	max-width: 1060px;
	margin: 0 auto;
}

.gallery_grid {
	display: grid;
	grid-template-columns: 1.55fr 1fr;
	gap: 20px;
}

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

.main_img_wrapper {
	height: 400px;
}
.sub_images_row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
.mini_tile {
	height: 230px;
}
.grid_right_side_tall {
	height: 650px;
}

.tile_slider {
	position: relative;
	overflow: hidden;
	width: 100%;
}

.tile_track {
	width: 100%;
	height: 100%;
	position: relative;
}

.tile_track img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	z-index: 1;
	transition: opacity 0.4s ease-in-out;
}

.tile_track img.active {
	opacity: 1;
	z-index: 2;
}

.tile_dots {
	position: absolute;
	bottom: 15px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 6px;
	z-index: 10;
}

.tile_dots .tile_dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #ffffff;
	cursor: pointer;
	opacity: 0.4;
	transition:
		opacity 0.3s,
		background 0.3s;
}

.tile_dots .tile_dot.active {
	background: #e96362;
	opacity: 1;
}

.journey_cta_section {
	text-align: center;
	padding: 70px 0 40px 0;
}

.cta_btn {
	display: inline-block;
	background: #e87a79;
	color: #ffffff;
	text-decoration: none;
	padding: 18px 60px;
	border-radius: 35px;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	transition:
		transform 0.3s ease,
		background-color 0.3s ease;
}

.cta_btn:hover {
	background: #d45251;
	transform: translateY(-2px);
}

@media (max-width: 768px) {
	.journey_container_fix {
		padding: 0 15px;
	}

	.journey_text_section {
		font-size: 22px;
	}

	.journey_text_section p {
		font-size: 14px;
	}

	.mid_text {
		margin-top: 50px;
		margin-bottom: 20px;
	}

	.gallery_grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.main_img_wrapper {
		height: 250px;
	}

	.sub_images_row {
		grid-template-columns: 1fr 1fr;
		gap: 15px;
	}

	.mini_tile {
		height: 150px;
	}

	.grid_right_side_tall {
		height: 350px;
	}

	.cta_btn {
		padding: 16px 40px;
		font-size: 13px;
	}
}
