/* Blog Detail Page Styles */

.blog-detail-hero {
	position: relative;
	height: 70vh;
	background: linear-gradient(135deg, rgba(45, 45, 45, 0.7), rgba(0, 0, 0, 0.5));
	overflow: hidden;
}

.blog-detail-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: -1;
}

.blog-hero-content {
	position: relative;
	z-index: 2;
	height: 100%;
	display: flex;
	align-items: center;
	color: white;
	text-align: center;
}

.blog-hero-title {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
	line-height: 1.2;
}

.blog-hero-meta {
	font-size: 1.1rem;
	opacity: 0.9;
	margin-bottom: 2rem;
}

.blog-hero-meta i {
	margin-right: 8px;
	color: #ffc107;
}

.blog-hero-meta span {
	margin: 0 15px;
}

.breadcrumb-nav {
	background: transparent;
	padding: 1rem 0;
	margin-bottom: 0;
}

.breadcrumb-nav .breadcrumb {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 25px;
	padding: 10px 20px;
	margin: 0;
}

.breadcrumb-nav .breadcrumb-item a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
}

.breadcrumb-nav .breadcrumb-item.active {
	color: white;
}

.blog-content-section {
	padding: 80px 0;
	background: #f8f9fa;
}

.blog-content-wrapper {
	background: white;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	margin-bottom: 3rem;
}

.blog-article-header {
	padding: 2rem;
	border-bottom: 1px solid #eee;
}

.blog-article-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #2c3e50;
	margin-bottom: 1rem;
	line-height: 1.3;
}

.blog-article-meta {
	display: flex;
	align-items: center;
	gap: 20px;
	color: #6c757d;
	font-size: 0.95rem;
}

.blog-article-meta .meta-item {
	display: flex;
	align-items: center;
	gap: 8px;
}

.blog-article-meta .meta-item i {
	color: #007bff;
}

.blog-images-gallery {
	padding: 0;
}

.blog-image-container {
	position: relative;
	overflow: hidden;
}

.blog-image-container img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.blog-image-container:hover img {
	transform: scale(1.05);
}

.blog-image-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
	color: white;
	padding: 2rem;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.blog-image-container:hover .blog-image-overlay {
	transform: translateY(0);
}

.blog-content-body {
	padding: 3rem;
}

.blog-content-text {

	line-height: 1.8;
	color: #495057;
}

.blog-content-text p {
	margin-bottom: 1.5rem;
}

.blog-content-text h1,
.blog-content-text h2,
.blog-content-text h3,
.blog-content-text h4,
.blog-content-text h5,
.blog-content-text h6 {
	color: #2c3e50;
	margin-top: 2rem;
	margin-bottom: 1rem;
	font-weight: 600;
}

.blog-content-text ul,
.blog-content-text ol {
	margin-bottom: 1.5rem;
	padding-left: 2rem;
}

.blog-content-text blockquote {
	border-left: 4px solid #007bff;
	background: #f8f9fa;
	padding: 1.5rem;
	margin: 2rem 0;
	font-style: italic;
	border-radius: 0 8px 8px 0;
}

.blog-actions {
	padding: 2rem;
	background: #f8f9fa;
	border-top: 1px solid #eee;
}

.blog-share {
	text-align: center;
}

.blog-share h5 {
	margin-bottom: 1rem;
	color: #2c3e50;
}

.share-buttons {
	display: flex;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
}

.share-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	border-radius: 25px;
	color: white;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
	transform: translateY(0);
}

.share-btn:hover {
	transform: translateY(-2px);
	text-decoration: none;
	color: white;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.share-btn.facebook {
	background: #3b5998;
}

.share-btn.twitter {
	background: #1da1f2;
}

.share-btn.linkedin {
	background: #0077b5;
}

.share-btn.whatsapp {
	background: #25d366;
}

.back-to-blog {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 24px;
	background: #007bff;
	color: white;
	text-decoration: none;
	border-radius: 25px;
	font-weight: 500;
	transition: all 0.3s ease;
	margin-bottom: 2rem;
}

.back-to-blog:hover {
	background: #0056b3;
	color: white;
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.error-page {
	text-align: center;
	padding: 100px 0;
}

.error-page i {
	font-size: 5rem;
	color: #dc3545;
	margin-bottom: 2rem;
}

.error-page h1 {
	font-size: 3rem;
	color: #2c3e50;
	margin-bottom: 1rem;
}

.error-page p {
	font-size: 1.2rem;
	color: #6c757d;
	margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
	.blog-hero-title {
		font-size: 2.5rem;
	}

	.blog-article-title {
		font-size: 2rem;
	}

	.blog-content-body {
		padding: 2rem;
	}

	.blog-article-meta {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}

	.share-buttons {
		flex-direction: column;
		align-items: center;
	}
}





.blog-section {
	padding: 30px 0 0;
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
	position: relative;
	overflow: hidden;
}

.blog-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23cbd5e0" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23cbd5e0" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23cbd5e0" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
	pointer-events: none;
}

.blog-section .section-header {
	margin-bottom: 10px;
	position: relative;
	z-index: 2;
}

.blog-section .section-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #2d3748;
	margin-bottom: 20px;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.blog-section .section-subtitle {
	font-size: 1.1rem;
	color: #718096;
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
}

.blog-grid-wrapper {
	position: relative;
	z-index: 2;
}

.blog-card {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	height: 100%;
	display: flex;
	flex-direction: column;
}

.blog-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
	position: relative;
	height: 250px;
	overflow: hidden;
}

.blog-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image img {
	transform: scale(1.1);
}

.blog-card-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgb(27 54 92 / 68%), rgb(29 36 49 / 66%));
	opacity: 0;
	transition: opacity 0.4s ease;
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	padding: 20px;
}

.blog-card:hover .blog-card-overlay {
	opacity: 1;
}

.blog-date {
	background: rgba(255, 255, 255, 0.9);
	border-radius: 10px;
	padding: 10px;
	text-align: center;
	color: #2d3748;
	font-weight: 600;
	min-width: 60px;
}

.date-day {
	display: block;
	font-size: 1.2rem;
	line-height: 1;
}

.date-month {
	display: block;
	font-size: 0.8rem;
	text-transform: uppercase;
	opacity: 0.8;
}

.blog-card-content {
	padding: 0px 30px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.blog-card-title {
	font-size: 20px;
	font-weight: 600;
	color: #2d3748;
	margin-bottom: 15px;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.blog-card-excerpt {
	color: #4a5568;
	line-height: 1.6;
	margin-bottom: 20px;
	flex-grow: 1;
	font-size: 13px;
}

.blog-card-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 20px;
	border-top: 1px solid #e2e8f0;
}

.blog-read-time {
	color: #718096;
	font-size: 0.85rem;
	display: flex;
	align-items: center;
	gap: 5px;
}

.blog-read-more {
	color: #073260;
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: all 0.3s ease;
}

.blog-read-more:hover {
	color: #2d5a3d;
	text-decoration: none;
	transform: translateX(5px);
}

.blog-view-all-btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: linear-gradient(135deg, #479f5f, #2d5a3d);
	color: white;
	padding: 18px 40px;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 10px 25px rgba(71, 159, 95, 0.3);
}

.blog-view-all-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 35px rgba(71, 159, 95, 0.4);
	color: white;
	text-decoration: none;
}

.blog-view-all-btn:hover i {
	transform: translateX(5px);
}

.blog-view-all-btn i {
	transition: transform 0.3s ease;
}

.no-blogs-found {
	text-align: center;
	padding: 80px 20px;
	color: #718096;
}

.no-blogs-found i {
	font-size: 4rem;
	margin-bottom: 20px;
	opacity: 0.5;
}

.no-blogs-found h3 {
	font-size: 1.8rem;
	margin-bottom: 15px;
	color: #4a5568;
}

.no-blogs-found p {
	font-size: 1.1rem;
	max-width: 400px;
	margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 992px) {
	.blog-section .section-title {
		font-size: 2rem;
	}

	.blog-card-content {
		padding: 25px;
	}
}

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

	.blog-section .section-title {
		font-size: 1.8rem;
	}

	.blog-card-title {
		font-size: 1.2rem;
	}

	.blog-card-content {
		padding: 20px;
	}

	.blog-card-image {
		height: 200px;
	}

	.blog-view-all-btn {
		padding: 15px 30px;
		font-size: 1rem;
	}
}


.map-container {
	border-radius: var(--border-radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-md);
	transition: var(--transition-normal);
	transform: translateY(0);
}

.map-container:hover {
	box-shadow: var(--shadow-lg);
	transform: translateY(-5px);
}

.contact-info-container {
	margin-top: 30px;
}

.contact-info-cards {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.contact-card {
	background: var(--light-primary);
	padding: 20px 15px;
	border-radius: var(--border-radius);
	text-align: center;
	box-shadow: var(--shadow-sm);
	transition: var(--transition-normal);
	height: 100%;
	border: 1px solid rgba(226, 232, 240, 0.8);
}

.contact-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-md);
	border-color: rgba(102, 126, 234, 0.3);
	background: linear-gradient(to bottom, var(--light-primary), var(--light-secondary));
}

.contact-icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 15px;
	background: var(--primary-gradient);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--light-primary);
	font-size: 1.5rem;
	box-shadow: var(--shadow-md);
	position: relative;
	overflow: hidden;
}

.contact-icon::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
	top: -100%;
	left: -100%;
	border-radius: 50%;
	transition: var(--transition-normal);
}

.contact-card:hover .contact-icon::after {
	top: 0;
	left: 0;
}

.contact-card h5 {
	font-weight: 600;
	font-size: 16px;
	margin-bottom: 8px;
	color: var(--text-primary);
}

.contact-card p {
	margin: 0;
	color: var(--text-secondary);
	font-size: 15px;
	font-weight: 500;
}

/* Truncate tour titles to one line with ellipsis */
.tour-title-truncate {

	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 100%;
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 10px;
	line-height: 1.4;
}

.best-tour-item .tour-title-truncate {
	margin-bottom: 15px;
	color: #2d3748;
	transition: color 0.3s ease;
}

.best-tour-item:hover .tour-title-truncate {
	color: #479f5f;
}

/* Responsive adjustments */
@media (max-width: 991px) {
	.premium-contact-form {
		margin-top: 40px;
	}
}

@media (max-width: 767px) {
	.contact-info-cards {
		gap: 20px;
	}

	.contact-card {
		margin-bottom: 15px;
	}
}

