/* page-banner */
.page-banner {}

.page-banner-content {
	padding: 150px 0;
	background-color: #00000069;
	color: white;
}

.page-banner-title {
	color: #fff;
	font-size: 34px
}

.page-banner--style2::after {
	content: "";
	height: 58px;
	width: 100%;
	z-index: 1;
	background: white;
	position: absolute;
	left: 0;
	bottom: 0;
	border-radius: 60px 60px 0px 0px;
}

.page-banner--style2 .page-banner-content {
	padding: 150px 0 210px;
}

/* Tour Card Block */
.tour-card {
	box-shadow: 0px 15px 18px #e3e3e31c;
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.3s ease;
	border: 1px solid #e6dbc1;
	cursor: pointer;
}

.tour-card:hover .tour-card__image-bg img {
	transform: scale(1.05);
}

/* Tour Card Image Block */
.tour-card__image {
	position: relative;
	display: block;
}

.tour-card__image-bg {
	width: 100%;
	height: 100%;
	padding-top: calc((240 / 320) * 100%);
	position: relative;
	overflow: hidden;
}

.tour-card__image-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	transition: transform 0.3s ease;
}

.tour-card__duration {
	position: absolute;
	bottom: 0;
	transform: translateY(50%);
	right: 15px;
	background: var(--color-main);
	padding: 4px 16px;
	border-radius: 20px;
	font-size: 14px;
	line-height: 23px;
	font-weight: 600;
	color: #fff;
	backdrop-filter: blur(10px);
}

/* Tour Card Content Block */
.tour-card__content {
	padding: 20px 15px 15px 15px;
	/* border: 1px solid #e6dbc1; */
	display: flex;
	flex-direction: column;
}

.tour-card__title {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 15px;
	line-height: 1.3;
}

.tour-card__title>* {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.tour-card__location {
	display: flex;
	align-items: flex-start;
	margin-bottom: 5px;
	gap: 12px;
}

.tour-card__location-icon {
	width: 18px;
	margin-top: 2px;
	flex-shrink: 0;
}



.tour-card__location-text {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
}

.tour-card__description {
	font-size: 13px;
	color: #737376;
	line-height: 1.2;
	/* display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden; */
	/* margin-bottom: 20px; */
	/* margin-bottom: 15px; */
}

.tour-card__readmore {
	color: var(--color-main);
	font-weight: 400;
	text-decoration: none;
	font-size: 13px;
	cursor: pointer;
	transition: color 0.2s ease;
}

.tour-card__readmore:hover {
	color: var(--color-main);
}

.tour-card__price {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: auto;
}

.tour-card__price-icon {
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}



.tour-card__price-text {
	font-size: 16px;
	font-weight: 500;
	color: #212529;
}

.tour-card__price-currency {
	font-size: 16px;
	color: #6c757d;
	font-weight: 400;
}


.tour-card__description ul li::before {
	content: "\2713";
}

.tour-card__wbtn {
	gap: 10px;
	margin-top: 15px;
}

.tour-card__wbtn>a {
	width: calc(50% - 5px);
}

/* Modal Block */

.modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
	display: none;
	animation-duration: 0.3s;
	animation-fill-mode: both;
}

.modal--active {
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal--fade-in {
	animation-name: fadeIn;
}

.modal--fade-out {
	animation-name: fadeOut;
}

/* Modal Overlay */

.modal__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(5px);
	cursor: pointer;
}

/* Modal Content */

.modal__content {
	position: relative;
	background: white;
	border-radius: 16px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	max-width: 90%;
	max-height: 90%;
	overflow: hidden;
	animation-duration: 0.3s;
	animation-fill-mode: both;
	padding-bottom: 55px;
	z-index: 1001;
}

.modal__content--slide-down {
	animation-name: slideDown;
}

.modal__content--slide-up {
	animation-name: slideUp;
}

/* Modal sizes */

.modal__content--small {
	width: 400px;
}

.modal__content--medium {
	width: 600px;
}

.modal__content--large {
	width: 800px;
}

.modal__content--full {
	width: 95%;
	height: 90%;
}

/* Modal Header */

.modal__header {
	padding: 10px 24px;
	border-bottom: 1px solid #e9ecef;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: linear-gradient(135deg, #f8f9fa, #e9ecef);
	margin-bottom: 20px;
}

.modal__title {
	font-size: 1.5rem;
	font-weight: 600;
	color: #2c3e50;
	margin: 0;
}

.modal__close {
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: #6c757d;
	padding: 5px;
	border-radius: 50%;
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 13px;
	right: 13px;
	transition: all 0.3s ease;
}

.modal__close:hover {
	background: #e9ecef;
	color: #495057;
}

/* Modal Body */

.modal__body {
	padding: 24px;
	max-height: 65vh;
	overflow-y: auto;
}

.modal__body::-webkit-scrollbar {
	width: 6px;
}

.modal__body::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 3px;
}

.modal__body::-webkit-scrollbar-thumb {
	background: #c1c1c1;
	border-radius: 3px;
}

.modal__body::-webkit-scrollbar-thumb:hover {
	background: #a1a1a1;
}

/* Modal Footer */

.modal__footer {
	padding: 10px 24px;
	border-top: 1px solid #e9ecef;
	background: #f8f9fa;
	display: flex;
	justify-content: flex-end;
	gap: 12px;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
}

.modal__footer .button {
	margin: 0;
	padding: 8px 16px;
	font-size: 14px;
	border-radius: 6px;
}

/* Responsive */

@media (max-width: 768px) {

	.modal__content--small,
	.modal__content--medium,
	.modal__content--large {
		width: 95%;
		margin: 20px;
	}

	.modal__header {
		padding: 16px 20px;
	}

	.modal__title {
		font-size: 1.25rem;
	}

	.modal__body {
		padding: 20px;
		max-height: 70vh;
	}

	.modal__footer {
		padding: 12px 20px;
	}

	.modal__footer .button {
		width: 100%;
	}
}

/* Dark theme modifier */

.modal--dark .modal__content {
	background: #2c3e50;
	color: white;
}

.modal--dark .modal__header {
	background: linear-gradient(135deg, #34495e, #2c3e50);
	border-bottom-color: #34495e;
}

.modal--dark .modal__title {
	color: white;
}

.modal--dark .modal__footer {
	background: #34495e;
	border-top-color: #34495e;
}

.modal--dark .form-group input,
.modal--dark .form-group textarea,
.modal--dark .form-group select {
	background: #34495e;
	color: white;
	border-color: #4a5f7a;
}

.modal--dark .form-group label {
	color: #ecf0f1;
}


/* Animations */

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes fadeOut {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-50px) scale(0.9);
	}

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

@keyframes slideUp {
	from {
		opacity: 1;
		transform: translateY(0) scale(1);
	}

	to {
		opacity: 0;
		transform: translateY(-50px) scale(0.9);
	}
}

/* btn */
.btn-common01 {
	min-height: 34px;
	background: var(--color-main);
	border: 1px solid var(--color-main);
	color: white;
	border-radius: 6px;
	font-size: 14px;
	display: inline-flex;
	justify-content: space-between;
	align-items: center;
	padding: 3px 10px;
	line-height: 1;
	gap: 5px;
}

.btn-common01:hover {
	background: var(--color-main2);
	border-color: var(--color-main2);
	color: white;
}

.btn-common01 .icon {
	line-height: 0;
}

.btn-common01 svg {
	width: 25px;
	height: 25px;

}

.btn-common01 img {
	width: 20px;
	height: 20px;
}

.btn-common01 svg path {
	stroke: currentColor;
}

.btn-common01--style2 {
	background: white;
	color: var(--color-main);
	border-color: #efe9c2;
	justify-content: start;
	gap: 5px;
}

.btn-common01--style2:hover {
	background: #efe9c2;
	color: #212529;
	border-color: #efe9c2;
}

.btn-common01--sharefb {
	background: #3b5998;
	border-color: #3b5998;
	color: white;
}

.btn-common02 {
	background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
	color: white;
	border: none;
	border-radius: 12px;
	padding: 10px 24px;
	font-size: 16px;
	font-weight: 600;
	width: 100%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(229, 57, 53, 0.3);
}

.btn-common02:hover {
	background: linear-gradient(135deg, #c62828 0%, #b71c1c 100%);
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(229, 57, 53, 0.4);
}

.btn-common02-icon {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

.btn-common03 {
	display: inline-block;
	background: #efe9c2;
	min-width: 160px;
	padding: 6px 20px;
	border-radius: 35px;
	font-size: 18px;
	font-weight: 400;
	transition: all .3s ease;
}

.btn-common03:hover {
	background: var(--color-main);
	color: white;
}

/* end btn */

/* post */
.article-item {

	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-item:hover .article-item__image-child img {
	transform: scale(1.1);
}

.article-item__image {
	display: block;
	margin-bottom: -25px;
}

.article-item__image-child {
	padding-top: calc((300 / 410) * 100%);
	display: block;
	width: 100%;
	position: relative;
	border-radius: 20px 20px 0 0;
	overflow: hidden;
}

.article-item__image-child img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	left: 0;
	top: 0;
	transition: all .7s ease-in;
}



.article-item__content {
	position: relative;
	padding: 15px 25px 30px;
	background-color: #fff;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 4px 30px #0000001a;
}

.article-item__meta {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
	font-size: 14px;
	color: #666666;
	border-bottom: 1px dashed #dee0ea;
	padding-bottom: 10px;
}

.article-item__category {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 500;
	color: #e74c3c;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.article-item__category::before {
	content: '';
	width: 6px;
	height: 6px;
	background-color: #e74c3c;
	border-radius: 50%;
}

.article-item__date {
	color: #999999;
}

.article-item__author {
	color: #999999;
}

.article-item__title {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 15px;
	transition: color 0.3s ease;
}

.article-item__title>* {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}


.article-item__excerpt {
	font-size: 16px;
	line-height: 1.6;
	color: #6e6e6e;
	margin-bottom: 20px;
}

.article-item__desc {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

.article-item__read-more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #e74c3c;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.3s ease;
}

.article-item__read-more::after {
	content: '→';
	font-size: 16px;
	transition: transform 0.3s ease;
}

.article-item__read-more:hover {
	color: #c0392b;
}

.article-item__read-more:hover::after {
	transform: translateX(4px);
}

.article-list {
	list-style: none;
}

.article-list__item {
	border-bottom: 1px solid #f1f3f4;
	padding: 16px 0;
	transition: background-color 0.3s ease;
}

.article-list__item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.article-list__item:hover {
	background-color: #f8f9fa;
	margin: 0 -8px;
	padding: 16px 8px;
	border-radius: 8px;
}

.article-list__link {
	display: flex;
	gap: 16px;
	text-decoration: none;
	color: inherit;
}

.article-list__image {
	width: 80px;
	height: 80px;
	border-radius: 8px;
	overflow: hidden;
	flex-shrink: 0;
}

.article-list__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.article-list__content {
	flex: 1;
}

.article-list__post-title {
	font-size: 16px;
	font-weight: 600;
	color: #2c3e50;
	line-height: 1.4;
	margin-bottom: 8px;
	transition: color 0.3s ease;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.article-list__link:hover .article-list__post-title {
	color: #e74c3c;
}

.article-list__date {
	font-size: 14px;
	color: #6c757d;
}

/*  */
.breadcrumbs-wrap {
	border-bottom: 1px dashed #dee0ea;
	padding-bottom: 10px;
	margin-bottom: 10px;
}

.breadcrumbs {}

.breadcrumbs__list {
	list-style: none;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	/* gap: 8px; */
}

.breadcrumbs__item {
	display: flex;
	align-items: center;
	font-size: 14px;
}

.breadcrumbs__link {
	color: #6c757d;
	text-decoration: none;
	padding: 4px 0;
	border-radius: 4px;
	transition: all 0.3s ease;
	position: relative;
}

.breadcrumbs__link:hover {
	color: var(--color-main);
	text-decoration: underline;
}

.breadcrumbs__link:focus {
	outline: 2px solid #007bff;
	outline-offset: 2px;
}

.breadcrumbs__separator {
	color: #adb5bd;
	margin: 0 4px;
	font-size: 12px;
	user-select: none;
}

.breadcrumbs__current {
	color: #495057;
	font-weight: 500;

	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* Alternative separator styles */
.breadcrumbs--arrow .breadcrumbs__separator::before {
	content: '→';
}

.breadcrumbs--slash .breadcrumbs__separator::before {
	content: '/';
}

.breadcrumbs--chevron .breadcrumbs__separator::before {
	content: '\3E';
	font-size: 16px;
}

/* Default separator */
.breadcrumbs__separator::before {
	content: '\3E';
	font-size: 16px;
}

/* Responsive design */
@media (max-width: 768px) {
	.breadcrumbs {
		padding: 12px 16px;
		margin: 0 10px;
	}

	.breadcrumbs__item {
		font-size: 13px;
	}

	.breadcrumbs__current {
		max-width: 200px;
	}
}

@media (max-width: 480px) {
	.breadcrumbs__list {
		gap: 4px;
	}

	.breadcrumbs__item {
		font-size: 12px;
	}

	.breadcrumbs__current {
		max-width: 150px;
	}

	.breadcrumbs__separator {
		margin: 0 2px;
	}
}

/* end  breadcrumbs*/
/* category-list */
.category-list {
	list-style: none;
}

.category-list__item {
	border-bottom: 1px solid #f1f3f4;
	transition: background-color 0.3s ease;
}

.category-list__item:last-child {
	border-bottom: none;
}

.category-list__item:hover {
	background-color: #f8f9fa;
}

.category-list__link {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
	color: #6c757d;
	text-decoration: none;
	transition: color 0.3s ease;
}

.category-list__link:hover {
	color: #495057;
}

.category-list__name {
	font-size: 16px;
	font-weight: 500;
}

.category-list__count {
	color: #6c757d;
	padding: 4px 8px;
	border-radius: 12px;
	font-size: 14px;
	font-weight: 500;
}

/* end list */
