/* ================================================
   iPhone Liquid Glass / Glassmorphism Design
   ================================================ */

/* Global Glassmorphism Enhancements */
body {
	background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
	background-attachment: fixed;
}

/* Smooth Backdrop Filter Support */
@supports (backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px)) {
	.glass-effect {
		backdrop-filter: blur(20px) saturate(180%);
		-webkit-backdrop-filter: blur(20px) saturate(180%);
	}
}

/* Navigation - Liquid Glass Effect */
.main-nav {
	background: rgba(0, 0, 0, 0.65) !important;
	backdrop-filter: blur(25px) saturate(180%);
	-webkit-backdrop-filter: blur(25px) saturate(180%);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-nav.nav-fixed {
	background: rgba(0, 0, 0, 0.75) !important;
	backdrop-filter: blur(30px) saturate(200%);
	-webkit-backdrop-filter: blur(30px) saturate(200%);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* Navigation Links - Glass Hover */
.nav-links a {
	position: relative;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
	color: #bc9c62 !important;
	text-shadow: 0 0 15px rgba(188, 156, 98, 0.5);
}

.nav-links a:not(.main-btn):after {
	background: linear-gradient(90deg, transparent, #bc9c62, transparent);
	box-shadow: 0 0 10px rgba(188, 156, 98, 0.6);
}

/* Buttons - Liquid Glass Style */
.main-btn,
.nav-links .main-btn {
	background: rgba(188, 156, 98, 0.15);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(188, 156, 98, 0.4);
	box-shadow: 0 4px 15px rgba(188, 156, 98, 0.2),
				inset 0 1px 0 rgba(255, 255, 255, 0.1);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.main-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, 
		transparent, 
		rgba(255, 255, 255, 0.2), 
		transparent);
	transition: left 0.5s ease;
}

.main-btn:hover::before {
	left: 100%;
}

.main-btn:hover,
.nav-links .main-btn:hover {
	background: rgba(188, 156, 98, 0.35);
	border-color: rgba(188, 156, 98, 0.8);
	box-shadow: 0 6px 25px rgba(188, 156, 98, 0.4),
				inset 0 1px 0 rgba(255, 255, 255, 0.2);
	transform: translateY(-2px);
}

.main-btn.second {
	background: rgba(188, 156, 98, 0.85);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border-color: rgba(188, 156, 98, 0.9);
}

.main-btn.second:hover {
	background: rgba(188, 156, 98, 0.95);
	box-shadow: 0 8px 30px rgba(188, 156, 98, 0.5);
}

.main-btn.whiteline {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.4);
}

.main-btn.whiteline:hover {
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 6px 25px rgba(255, 255, 255, 0.3);
}

/* Transfer Form - Premium Glass Effect */
.transfer-form {
	background: rgba(0, 0, 0, 0.45) !important;
	backdrop-filter: blur(30px) saturate(180%);
	-webkit-backdrop-filter: blur(30px) saturate(180%);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
				inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.transfer-form .form-group input,
.transfer-form .form-group textarea,
.transfer-form .form-group .select2-container .select2-selection--single,
.transfer-form .form-group .select2-search__field,
.transfer-form .form-group .form-passengers {
	background: rgba(255, 255, 255, 0.06) !important;
	backdrop-filter: blur(15px) saturate(160%);
	-webkit-backdrop-filter: blur(15px) saturate(160%);
	border: 1px solid rgba(255, 255, 255, 0.15) !important;
	box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.2),
				0 1px 0 rgba(255, 255, 255, 0.05);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.transfer-form .form-group input:focus,
.transfer-form .form-group textarea:focus,
.transfer-form .form-group .select2-container--open .select2-selection--single {
	background: rgba(255, 255, 255, 0.10) !important;
	border-color: rgba(188, 156, 98, 0.6) !important;
	box-shadow: 0 0 0 3px rgba(188, 156, 98, 0.15),
				inset 0 2px 8px rgba(0, 0, 0, 0.2);
}

.transfer-form .form-group .select2-dropdown {
	background: rgba(15, 15, 15, 0.95) !important;
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	border: 1px solid rgba(255, 255, 255, 0.15) !important;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.transfer-form .form-group .form-passenger-box {
	background: rgba(0, 0, 0, 0.85) !important;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.2) !important;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

/* Form Groups - Glass Style */
.form-group input,
.form-group textarea,
.form-group .select2-container .select2-selection--single {
	background: rgba(34, 34, 34, 0.65) !important;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.08) !important;
	box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.3),
				0 1px 0 rgba(255, 255, 255, 0.03);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input:focus,
.form-group textarea:focus {
	background: rgba(34, 34, 34, 0.75) !important;
	border-color: rgba(188, 156, 98, 0.6) !important;
	box-shadow: 0 0 0 3px rgba(188, 156, 98, 0.15),
				inset 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* Region Items - Glass Cards */
.region-item {
	background: rgba(30, 30, 30, 0.5) !important;
	backdrop-filter: blur(15px) saturate(150%);
	-webkit-backdrop-filter: blur(15px) saturate(150%);
	border: 1px solid rgba(188, 156, 98, 0.3) !important;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3),
				inset 0 1px 0 rgba(255, 255, 255, 0.05);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.region-item:hover {
	background: rgba(188, 156, 98, 0.25) !important;
	border-color: rgba(188, 156, 98, 0.8) !important;
	box-shadow: 0 8px 30px rgba(188, 156, 98, 0.3),
				inset 0 1px 0 rgba(255, 255, 255, 0.1);
	transform: translateY(-4px);
}

/* Car Selection Cards - Premium Glass */
.car-selection {
	background: rgba(30, 30, 30, 0.55) !important;
	backdrop-filter: blur(20px) saturate(170%);
	-webkit-backdrop-filter: blur(20px) saturate(170%);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
				inset 0 1px 0 rgba(255, 255, 255, 0.05);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
}

.car-selection:hover {
	background: rgba(40, 40, 40, 0.65) !important;
	border-color: rgba(188, 156, 98, 0.4);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5),
				0 0 0 1px rgba(188, 156, 98, 0.2),
				inset 0 1px 0 rgba(255, 255, 255, 0.08);
	transform: translateY(-3px);
}

/* Comments/Reviews - Glass Cards */
.comment-item,
.review-card {
	background: rgba(30, 30, 30, 0.5) !important;
	backdrop-filter: blur(15px) saturate(150%);
	-webkit-backdrop-filter: blur(15px) saturate(150%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3),
				inset 0 1px 0 rgba(255, 255, 255, 0.04);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.comment-item:hover,
.review-card:hover {
	background: rgba(35, 35, 35, 0.6) !important;
	box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4),
				inset 0 1px 0 rgba(255, 255, 255, 0.06);
	transform: translateY(-2px);
}

/* Blog Cards - Glass Effect */
.blog-card,
.blog-item {
	background: rgba(30, 30, 30, 0.5) !important;
	backdrop-filter: blur(15px) saturate(150%);
	-webkit-backdrop-filter: blur(15px) saturate(150%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3),
				inset 0 1px 0 rgba(255, 255, 255, 0.04);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
}

.blog-card:hover,
.blog-item:hover {
	background: rgba(35, 35, 35, 0.6) !important;
	border-color: rgba(188, 156, 98, 0.3);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4),
				inset 0 1px 0 rgba(255, 255, 255, 0.06);
	transform: translateY(-3px);
}

.blog-card-image {
	border: 1px solid rgba(188, 156, 98, 0.3) !important;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
	overflow: hidden;
}

/* Tour Cards - Glass Effect */
.tour-card,
.tour-item {
	background: rgba(30, 30, 30, 0.5) !important;
	backdrop-filter: blur(15px) saturate(150%);
	-webkit-backdrop-filter: blur(15px) saturate(150%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3),
				inset 0 1px 0 rgba(255, 255, 255, 0.04);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
}

.tour-card:hover,
.tour-item:hover {
	background: rgba(35, 35, 35, 0.6) !important;
	border-color: rgba(188, 156, 98, 0.3);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4),
				inset 0 1px 0 rgba(255, 255, 255, 0.06);
	transform: translateY(-3px);
}

/* Footer - Glass Effect */
.ftr-content {
	background: rgba(34, 34, 34, 0.65) !important;
	backdrop-filter: blur(25px) saturate(180%);
	-webkit-backdrop-filter: blur(25px) saturate(180%);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.ftr-bottom {
	background: rgba(0, 0, 0, 0.85) !important;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Contact Navigation - Glass Bottom Bar */
.contact-nav {
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(25px) saturate(180%);
	-webkit-backdrop-filter: blur(25px) saturate(180%);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.contact-nav a {
	background: transparent !important;
	border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-nav a:hover {
	background: rgba(188, 156, 98, 0.15) !important;
}

/* Modal - Glass Effect */
.modal-content {
	background: rgba(30, 30, 30, 0.95) !important;
	backdrop-filter: blur(30px) saturate(180%);
	-webkit-backdrop-filter: blur(30px) saturate(180%);
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
	border-radius: 20px !important;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.modal-top {
	background: rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.modal-top h2 {
	color: #fff !important;
}

/* Message Box - Glass Style */
.msg-box {
	background: rgba(34, 34, 34, 0.75) !important;
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border: 1px solid rgba(100, 149, 237, 0.3) !important;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3),
				inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.msg-box.success {
	border-color: rgba(50, 205, 50, 0.3) !important;
}

.msg-box.danger {
	border-color: rgba(178, 34, 34, 0.3) !important;
}

/* Checkbox Groups - Glass Style */
.cbox-group.slide label {
	background: rgba(34, 34, 34, 0.65) !important;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.08) !important;
	box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.2);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cbox-group.slide label:hover {
	background: rgba(34, 34, 34, 0.75) !important;
	border-color: rgba(188, 156, 98, 0.3) !important;
}

.cbox-group input:checked ~ label {
	background: rgba(188, 156, 98, 0.2) !important;
	border-color: rgba(188, 156, 98, 0.5) !important;
}

/* Select2 Dropdown - Glass Effect */
.select2-dropdown {
	background: rgba(20, 20, 20, 0.95) !important;
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
	border-radius: 12px !important;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.select2-results__option {
	transition: all 0.2s ease;
}

.select2-results__option--highlighted {
	background: rgba(188, 156, 98, 0.3) !important;
}

/* Nav Top - Glass Effect */
.nav-top {
	background: rgba(34, 34, 34, 0.75) !important;
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Pagination - Glass Buttons */
.pagination ul li a {
	background: rgba(90, 90, 90, 0.6) !important;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pagination ul li a:hover {
	background: rgba(188, 156, 98, 0.7) !important;
	box-shadow: 0 4px 12px rgba(188, 156, 98, 0.3);
	transform: translateY(-2px);
}

.pagination ul li.active a {
	background: rgba(179, 89, 0, 0.8) !important;
	box-shadow: 0 4px 12px rgba(179, 89, 0, 0.4);
}

/* Slider Controls - Glass Effect */
.main-slider-container > .tns-outer > .tns-controls > button {
	background: rgba(0, 0, 0, 0.5) !important;
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-slider-container > .tns-outer > .tns-controls > button:hover {
	background: rgba(188, 156, 98, 0.5) !important;
	box-shadow: 0 6px 20px rgba(188, 156, 98, 0.3);
	transform: scale(1.05);
}

/* Panel Text Containers - Glass Effect */
.panel-text {
	background: rgba(30, 30, 30, 0.4);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	padding: 20px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Additional Products - Glass Cards */
.additional-product-card,
.product-item {
	background: rgba(30, 30, 30, 0.5) !important;
	backdrop-filter: blur(15px) saturate(150%);
	-webkit-backdrop-filter: blur(15px) saturate(150%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3),
				inset 0 1px 0 rgba(255, 255, 255, 0.04);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.additional-product-card:hover,
.product-item:hover {
	background: rgba(35, 35, 35, 0.6) !important;
	border-color: rgba(188, 156, 98, 0.3);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4),
				inset 0 1px 0 rgba(255, 255, 255, 0.06);
	transform: translateY(-3px);
}

/* Image Overlays - Glass Effect */
.img-overlay {
	background: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

/* Shine Effect on Hover */
@keyframes shine {
	0% {
		left: -100%;
	}
	100% {
		left: 100%;
	}
}

.glass-shine {
	position: relative;
	overflow: hidden;
}

.glass-shine::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 50%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.1),
		transparent
	);
	transition: left 0.5s ease;
}

.glass-shine:hover::after {
	left: 100%;
}

/* Scrollbar - Glass Style */
::-webkit-scrollbar {
	width: 12px;
	background: rgba(20, 20, 20, 0.5);
}

::-webkit-scrollbar-thumb {
	background: rgba(188, 156, 98, 0.5);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 2px solid transparent;
	border-radius: 10px;
	background-clip: padding-box;
	box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb:hover {
	background: rgba(188, 156, 98, 0.7);
	background-clip: padding-box;
}

::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
}

/* Loading Screen - Glass Effect */
#loading {
	background: rgba(0, 0, 0, 0.95) !important;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
}

/* Animations */
@keyframes glassFloat {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-5px);
	}
}

.glass-float {
	animation: glassFloat 3s ease-in-out infinite;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
	.main-nav {
		backdrop-filter: blur(20px) saturate(180%);
		-webkit-backdrop-filter: blur(20px) saturate(180%);
	}
	
	.transfer-form {
		backdrop-filter: blur(25px) saturate(180%);
		-webkit-backdrop-filter: blur(25px) saturate(180%);
	}
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
	.main-nav,
	.transfer-form,
	.car-selection,
	.region-item {
		border-width: 2px;
	}
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

/* Additional Text Color Overrides for Glass Theme */
.modal-share a {
	color: #f0f0f0 !important;
	background: rgba(255, 255, 255, 0.03);
	border: solid 1px rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	padding: 10px;
}

.modal-share a:hover {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(188, 156, 98, 0.3);
}

#copy_box span {
	color: #f0f0f0 !important;
}

.side-page-links>a>.desc h3,
.page-contact>div>span,
.page-contact>div>a {
	color: #f0f0f0 !important;
}

.blog-item>.desc h3 {
	background: rgba(188, 156, 98, 0.85) !important;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: #fff !important;
}

.blog-item>.desc span,
.blog-item>.desc p {
	color: #ccc !important;
}

.comment-item>.top span,
.comment-item>.bottom p {
	color: #ddd !important;
}

.comment-item>.bottom p {
	color: #ccc !important;
}

/* Form passenger box label */
.form-passenger-box label {
	color: #f0f0f0 !important;
}

/* Car selection specs text */
.car-selection>.top>.desc .specs>span {
	background: rgba(30, 30, 30, 0.6) !important;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.car-selection>.top>.desc .specs>span>i {
	background: rgba(20, 20, 20, 0.8) !important;
}

/* Coloredback section glassmorphism */
.coloredback {
	background: linear-gradient(135deg, rgba(188, 156, 98, 0.9) 0%, rgba(188, 156, 98, 0.95) 100%);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

/* Backgray section glassmorphism */
.backgray {
	background: rgba(25, 25, 25, 0.5);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

/* Comment item quote icons */
.comment-item:before,
.comment-item:after {
	color: rgba(188, 156, 98, 0.15) !important;
}

/* Blog card glassmorphism */
.blog-card {
	background: rgba(30, 30, 30, 0.5) !important;
	backdrop-filter: blur(15px) saturate(150%);
	-webkit-backdrop-filter: blur(15px) saturate(150%);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-card:hover {
	background: rgba(35, 35, 35, 0.6) !important;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

/* Additional hover effects */
.ftr-social a:hover {
	background: rgba(188, 156, 98, 0.3);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(188, 156, 98, 0.3);
}

.page-contact>div:hover {
	background: rgba(35, 35, 35, 0.6);
	border-color: rgba(188, 156, 98, 0.2);
	transform: translateY(-2px);
}

/* ================================================
   ADDITIONAL PAGES & COMPONENTS GLASSMORPHISM
   ================================================ */

/* Reservation Summary Box - Premium Glass */
.rezsum-side {
	background: rgba(30, 30, 30, 0.55) !important;
	backdrop-filter: blur(20px) saturate(170%);
	-webkit-backdrop-filter: blur(20px) saturate(170%);
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
	border-radius: 20px;
	padding: 20px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.rezsum-side>h2 {
	color: #f0f0f0 !important;
	border-bottom: 1px solid rgba(188, 156, 98, 0.3);
	padding-bottom: 10px;
	margin-bottom: 15px;
}

.rezsum-img {
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
	border-radius: 16px !important;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
	overflow: hidden;
}

.rezsum-line>i {
	color: #bc9c62 !important;
}

.rezsum-line>i:after {
	border-color: rgba(188, 156, 98, 0.3) !important;
}

.rezsum-line>div span:first-child,
.rezsum-line>div span:last-child {
	color: #ddd !important;
}

.rezsum-price {
	background: rgba(255, 255, 255, 0.05) !important;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(188, 156, 98, 0.3) !important;
	box-shadow: 0 4px 15px rgba(188, 156, 98, 0.2);
}

.rezsum-price>span:first-child {
	color: #ddd !important;
}

.rezsum-voucher h2 {
	background: rgba(30, 30, 30, 0.5) !important;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
	color: #f0f0f0 !important;
}

.rezsum-voucher .line {
	border: 1px solid rgba(255, 255, 255, 0.08) !important;
	background: rgba(255, 255, 255, 0.02);
	color: #ddd !important;
}

.rezsum-notify {
	background: rgba(30, 30, 30, 0.5) !important;
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border: 1px solid rgba(188, 156, 98, 0.3) !important;
	box-shadow: 0 4px 15px rgba(188, 156, 98, 0.2);
}

.rezsum-notify>p,
.rezsum-notify>span {
	color: #ddd !important;
}

.rezsum-code {
	background: rgba(188, 156, 98, 0.85) !important;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 4px 15px rgba(188, 156, 98, 0.3);
}

/* Extra Line - Glass Effect */
.extra-line {
	background: rgba(30, 30, 30, 0.55) !important;
	backdrop-filter: blur(15px) saturate(150%);
	-webkit-backdrop-filter: blur(15px) saturate(150%);
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
	border-radius: 16px !important;
}

/* Payment Tabs - Glass Buttons */
.ptab-item>label {
	background: rgba(30, 30, 30, 0.5) !important;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
	color: #ddd !important;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ptab-item>label:hover {
	background: rgba(35, 35, 35, 0.6) !important;
	border-color: rgba(188, 156, 98, 0.3) !important;
}

.ptab-item.active>label {
	background: rgba(188, 156, 98, 0.85) !important;
	border-color: rgba(188, 156, 98, 0.9) !important;
	box-shadow: 0 4px 15px rgba(188, 156, 98, 0.3);
}

/* Gallery Items - Glass Cards */
.gallery-item,
.photo-item {
	background: rgba(30, 30, 30, 0.5) !important;
	backdrop-filter: blur(15px) saturate(150%);
	-webkit-backdrop-filter: blur(15px) saturate(150%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.04);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover,
.photo-item:hover {
	background: rgba(35, 35, 35, 0.6) !important;
	border-color: rgba(188, 156, 98, 0.3);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
	transform: translateY(-3px);
}

/* Corporate/Policy Pages - Glass Content */
.corporate-content,
.policy-content,
.page-content {
	background: rgba(30, 30, 30, 0.5);
	backdrop-filter: blur(15px) saturate(150%);
	-webkit-backdrop-filter: blur(15px) saturate(150%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 30px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.corporate-content h1,
.corporate-content h2,
.corporate-content h3,
.policy-content h1,
.policy-content h2,
.policy-content h3,
.page-content h1,
.page-content h2,
.page-content h3 {
	color: #f0f0f0 !important;
}

.corporate-content p,
.corporate-content li,
.policy-content p,
.policy-content li,
.page-content p,
.page-content li {
	color: #ccc !important;
}

/* Comments Page - Glass Layout */
.comment-page-item {
	background: rgba(30, 30, 30, 0.5) !important;
	backdrop-filter: blur(15px) saturate(150%);
	-webkit-backdrop-filter: blur(15px) saturate(150%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 20px;
	margin-bottom: 20px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.comment-page-item h3,
.comment-page-item h4 {
	color: #f0f0f0 !important;
}

.comment-page-item p,
.comment-page-item span {
	color: #ccc !important;
}

/* Fixed Contact Buttons - Enhanced Glass */
.fixed-wa,
.fixed-phone,
.fixed-ma {
	backdrop-filter: blur(10px) !important;
	-webkit-backdrop-filter: blur(10px) !important;
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fixed-wa:hover,
.fixed-phone:hover,
.fixed-ma:hover {
	transform: scale(1.1) translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4) !important;
}

/* Select2 Dropdown Enhancements */
.select2-container--default .select2-selection--single {
	background: rgba(255, 255, 255, 0.06) !important;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
	transition: all 0.3s ease;
}

.select2-container--default.select2-container--focus .select2-selection--single {
	border-color: rgba(188, 156, 98, 0.5) !important;
	box-shadow: 0 0 0 3px rgba(188, 156, 98, 0.15);
}

.select2-container--default .select2-results__option {
	background: transparent !important;
	color: #ddd !important;
	transition: all 0.2s ease;
}

.select2-container--default .select2-results__option[aria-selected=true] {
	background: rgba(188, 156, 98, 0.2) !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
	background: rgba(188, 156, 98, 0.4) !important;
	color: #fff !important;
}

/* Tour Cards & Items */
.tour-card,
.tour-item,
.tour-box {
	background: rgba(30, 30, 30, 0.5) !important;
	backdrop-filter: blur(15px) saturate(150%);
	-webkit-backdrop-filter: blur(15px) saturate(150%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.04);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tour-card:hover,
.tour-item:hover,
.tour-box:hover {
	background: rgba(35, 35, 35, 0.6) !important;
	border-color: rgba(188, 156, 98, 0.3);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
	transform: translateY(-3px);
}

.tour-card h3,
.tour-item h3,
.tour-box h3 {
	color: #f0f0f0 !important;
}

.tour-card p,
.tour-card span,
.tour-item p,
.tour-item span,
.tour-box p,
.tour-box span {
	color: #ccc !important;
}

/* Tour Detail Page */
.tour-detail-content {
	background: rgba(30, 30, 30, 0.5);
	backdrop-filter: blur(15px) saturate(150%);
	-webkit-backdrop-filter: blur(15px) saturate(150%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 20px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Blog Detail Page */
.blog-detail-content,
.blog-detail-box {
	background: rgba(30, 30, 30, 0.5);
	backdrop-filter: blur(15px) saturate(150%);
	-webkit-backdrop-filter: blur(15px) saturate(150%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 20px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.blog-detail-content h1,
.blog-detail-content h2,
.blog-detail-content h3,
.blog-detail-box h1,
.blog-detail-box h2,
.blog-detail-box h3 {
	color: #f0f0f0 !important;
}

.blog-detail-content p,
.blog-detail-content li,
.blog-detail-box p,
.blog-detail-box li {
	color: #ccc !important;
}

/* Reservation Detail Page */
.reservation-detail {
	background: rgba(30, 30, 30, 0.5);
	backdrop-filter: blur(15px) saturate(150%);
	-webkit-backdrop-filter: blur(15px) saturate(150%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 20px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.reservation-detail h2,
.reservation-detail h3 {
	color: #f0f0f0 !important;
}

.reservation-detail p,
.reservation-detail span,
.reservation-detail li {
	color: #ccc !important;
}

/* Photos Page Gallery */
.photos-gallery {
	display: grid;
	gap: 20px;
}

.photos-gallery-item {
	background: rgba(30, 30, 30, 0.5);
	backdrop-filter: blur(15px) saturate(150%);
	-webkit-backdrop-filter: blur(15px) saturate(150%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.photos-gallery-item:hover {
	border-color: rgba(188, 156, 98, 0.3);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
	transform: scale(1.02);
}

/* Additional Products Section */
.additional-products-section {
	background: rgba(30, 30, 30, 0.4);
	backdrop-filter: blur(15px) saturate(150%);
	-webkit-backdrop-filter: blur(15px) saturate(150%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 20px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	margin-bottom: 30px;
}

.additional-products-section h2,
.additional-products-section h3 {
	color: #f0f0f0 !important;
}

.additional-product-item {
	background: rgba(255, 255, 255, 0.05) !important;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
	border-radius: 12px;
	padding: 15px;
	margin-bottom: 15px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.additional-product-item:hover {
	background: rgba(255, 255, 255, 0.08) !important;
	border-color: rgba(188, 156, 98, 0.3) !important;
	transform: translateX(5px);
}

.additional-product-item h4,
.additional-product-item span {
	color: #ddd !important;
}

.additional-product-item p {
	color: #aaa !important;
}

/* Passenger Info Sections */
.passenger-info-section {
	background: rgba(30, 30, 30, 0.5);
	backdrop-filter: blur(15px) saturate(150%);
	-webkit-backdrop-filter: blur(15px) saturate(150%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 20px;
	margin-bottom: 20px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.passenger-info-section h3 {
	color: #f0f0f0 !important;
	border-bottom: 1px solid rgba(188, 156, 98, 0.3);
	padding-bottom: 10px;
	margin-bottom: 15px;
}

/* Zebra Datepicker Glass Theme */
.Zebra_DatePicker {
	background: rgba(20, 20, 20, 0.95) !important;
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5) !important;
}

.Zebra_DatePicker td,
.Zebra_DatePicker th {
	color: #ddd !important;
	background: rgba(255, 255, 255, 0.03);
}

.Zebra_DatePicker .dp_selected {
	background: rgba(188, 156, 98, 0.85) !important;
	color: #fff !important;
}

.Zebra_DatePicker .dp_hover {
	background: rgba(188, 156, 98, 0.4) !important;
}

/* Info Boxes */
.info-box,
.alert-box,
.notice-box {
	background: rgba(30, 30, 30, 0.5) !important;
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border: 1px solid rgba(100, 149, 237, 0.3) !important;
	border-radius: 12px;
	padding: 15px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.info-box p,
.alert-box p,
.notice-box p {
	color: #ddd !important;
}

/* Price Display Boxes */
.price-box,
.total-price {
	background: rgba(188, 156, 98, 0.15) !important;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(188, 156, 98, 0.4) !important;
	border-radius: 12px;
	padding: 15px;
	box-shadow: 0 4px 15px rgba(188, 156, 98, 0.2);
}

.price-box span,
.total-price span {
	color: #f0f0f0 !important;
}

.price-value {
	color: #bc9c62 !important;
	font-weight: 700;
}

/* ================================================
   TOURS PAGE SPECIFIC GLASSMORPHISM
   ================================================ */

/* Tour Cards - Override inline styles */
.tour-card {
	background: rgba(30, 30, 30, 0.55) !important;
	backdrop-filter: blur(20px) saturate(170%) !important;
	-webkit-backdrop-filter: blur(20px) saturate(170%) !important;
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
	border-radius: 16px !important;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.tour-card:hover {
	background: rgba(40, 40, 40, 0.65) !important;
	border-color: rgba(188, 156, 98, 0.5) !important;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(188, 156, 98, 0.2) !important;
	transform: translateY(-8px) !important;
}

.tour-title {
	color: #f0f0f0 !important;
}

.tour-desc {
	color: #ccc !important;
}

.tour-price-badge {
	background: rgba(188, 156, 98, 0.9) !important;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 4px 15px rgba(188, 156, 98, 0.3) !important;
}

.tour-content {
	color: #ddd !important;
}

.tour-info-item {
	background: rgba(255, 255, 255, 0.05) !important;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
	color: #ddd !important;
}

/* Tour Detail Page - Override inline styles */
.card[style*="background-color: #1a1a1a"] {
	background: rgba(30, 30, 30, 0.55) !important;
	backdrop-filter: blur(20px) saturate(170%) !important;
	-webkit-backdrop-filter: blur(20px) saturate(170%) !important;
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
	border-radius: 16px !important;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4) !important;
}

.card-body {
	background: transparent !important;
}

.price-badge {
	background: rgba(188, 156, 98, 0.9) !important;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 4px 15px rgba(188, 156, 98, 0.3) !important;
}

/* Carousel for tour images */
.carousel-inner {
	border-radius: 16px !important;
	overflow: hidden;
}

.carousel-item img {
	border-radius: 16px !important;
}

.carousel-control-prev,
.carousel-control-next {
	background: rgba(0, 0, 0, 0.4) !important;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	top: 50%;
	transform: translateY(-50%);
	opacity: 0.7;
	transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
	opacity: 1;
	background: rgba(188, 156, 98, 0.6) !important;
}

.carousel-indicators li {
	background: rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.carousel-indicators li.active {
	background: rgba(188, 156, 98, 0.9);
}

/* Search Bar Container */
.search-bar-container {
	background: rgba(30, 30, 30, 0.5);
	backdrop-filter: blur(15px) saturate(150%);
	-webkit-backdrop-filter: blur(15px) saturate(150%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 20px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Sticky Sidebar */
.sticky-top[style*="background-color: #1a1a1a"] {
	background: rgba(30, 30, 30, 0.55) !important;
	backdrop-filter: blur(20px) saturate(170%) !important;
	-webkit-backdrop-filter: blur(20px) saturate(170%) !important;
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4) !important;
}

/* Section backgrounds - override inline styles */
section[style*="background-color: #111"],
section[style*="background: #111"] {
	background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%) !important;
	background-attachment: fixed !important;
}

/* Bootstrap Card overrides for glass effect */
.card.border-0.shadow-sm {
	background: rgba(30, 30, 30, 0.55) !important;
	backdrop-filter: blur(20px) saturate(170%) !important;
	-webkit-backdrop-filter: blur(20px) saturate(170%) !important;
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
	border-radius: 16px !important;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4) !important;
}

/* International Tel Input Glass */
.iti__country-list {
	background: rgba(20, 20, 20, 0.95) !important;
	backdrop-filter: blur(20px) saturate(180%) !important;
	-webkit-backdrop-filter: blur(20px) saturate(180%) !important;
	border: 1px solid rgba(255, 255, 255, 0.15) !important;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5) !important;
}

.iti__country-list .iti__highlight {
	background: rgba(188, 156, 98, 0.3) !important;
}

.iti__country {
	color: #ddd !important;
	transition: all 0.2s ease;
}

.iti__country:hover {
	background: rgba(188, 156, 98, 0.2) !important;
}

/* Blog List & Detail Pages */
.blog-list-item {
	background: rgba(30, 30, 30, 0.5) !important;
	backdrop-filter: blur(15px) saturate(150%);
	-webkit-backdrop-filter: blur(15px) saturate(150%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-list-item:hover {
	background: rgba(35, 35, 35, 0.6) !important;
	border-color: rgba(188, 156, 98, 0.3);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
	transform: translateY(-3px);
}

/* Blog Detail Content */
.blog-detail-header {
	background: rgba(30, 30, 30, 0.5);
	backdrop-filter: blur(15px) saturate(150%);
	-webkit-backdrop-filter: blur(15px) saturate(150%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 30px;
	margin-bottom: 30px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.blog-meta {
	color: #aaa !important;
}

.blog-author {
	color: #bc9c62 !important;
}

/* Photo Grid Items */
.photo-grid-item {
	background: rgba(30, 30, 30, 0.5);
	backdrop-filter: blur(15px) saturate(150%);
	-webkit-backdrop-filter: blur(15px) saturate(150%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.photo-grid-item:hover {
	border-color: rgba(188, 156, 98, 0.3);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
	transform: scale(1.05);
}

/* Gallery Modal */
.gallery-modal {
	background: rgba(0, 0, 0, 0.95) !important;
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
}

.gallery-modal-content {
	background: transparent !important;
	border: none;
}

/* Comments Page Specific */
.comments-container {
	background: rgba(30, 30, 30, 0.5);
	backdrop-filter: blur(15px) saturate(150%);
	-webkit-backdrop-filter: blur(15px) saturate(150%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 20px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.comment-author {
	color: #bc9c62 !important;
	font-weight: 600;
}

.comment-date {
	color: #aaa !important;
}

.comment-text {
	color: #ccc !important;
}

.comment-rating {
	color: #ffd700 !important;
}

/* Corporate/Policy Pages Layout */
.corporate-page,
.policy-page {
	background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
	background-attachment: fixed;
	min-height: 100vh;
}

.corporate-container {
	background: rgba(30, 30, 30, 0.5);
	backdrop-filter: blur(15px) saturate(150%);
	-webkit-backdrop-filter: blur(15px) saturate(150%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 40px;
	margin: 30px 0;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.corporate-title {
	color: #f0f0f0 !important;
	border-bottom: 2px solid rgba(188, 156, 98, 0.3);
	padding-bottom: 15px;
	margin-bottom: 25px;
}

.corporate-section {
	margin-bottom: 30px;
}

.corporate-section h2,
.corporate-section h3 {
	color: #f0f0f0 !important;
	margin-top: 25px;
	margin-bottom: 15px;
}

.corporate-section p,
.corporate-section li {
	color: #ccc !important;
	line-height: 1.8;
}

.corporate-section ul,
.corporate-section ol {
	padding-left: 25px;
}

.corporate-section li {
	margin-bottom: 10px;
}

/* Reservation Success Page */
.success-box {
	background: rgba(30, 30, 30, 0.55);
	backdrop-filter: blur(20px) saturate(170%);
	-webkit-backdrop-filter: blur(20px) saturate(170%);
	border: 1px solid rgba(76, 175, 80, 0.3);
	border-radius: 16px;
	padding: 30px;
	text-align: center;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.success-icon {
	color: #4caf50 !important;
	font-size: 64px;
	margin-bottom: 20px;
}

.success-title {
	color: #f0f0f0 !important;
}

.success-message {
	color: #ccc !important;
}

/* Loading Screen Enhancement */
#loading {
	background: rgba(0, 0, 0, 0.97) !important;
	backdrop-filter: blur(25px);
	-webkit-backdrop-filter: blur(25px);
}

.loading-icon {
	filter: drop-shadow(0 0 20px rgba(188, 156, 98, 0.5));
}

/* Ensure all text in glassmorphism elements is readable */
.tour-card *,
.card *,
.rezsum-side *,
.tour-detail-content *,
.blog-detail-content *,
.corporate-content *,
.additional-products-section * {
	text-shadow: none !important;
}

/* Fix for very light backgrounds */
[style*="color: #222"],
[style*="color: #333"],
[style*="color: #444"] {
	color: #ddd !important;
}

[style*="background: #fff"],
[style*="background-color: #fff"],
[style*="background: #ffffff"],
[style*="background-color: #ffffff"] {
	background: rgba(30, 30, 30, 0.5) !important;
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ================================================
   BLOG PAGE SPECIFIC GLASSMORPHISM
   ================================================ */

/* Blog page section background */
section[style*="background: #0d0d0d"] {
	background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%) !important;
	background-attachment: fixed !important;
}

/* Blog header */
.blog-header {
	background: rgba(30, 30, 30, 0.5);
	backdrop-filter: blur(15px) saturate(150%);
	-webkit-backdrop-filter: blur(15px) saturate(150%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 25px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Blog search bar */
.search-bar input[style*="background: #1a1a1a"] {
	background: rgba(30, 30, 30, 0.6) !important;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.15) !important;
	transition: all 0.3s ease !important;
}

.search-bar input:focus {
	background: rgba(35, 35, 35, 0.7) !important;
	border-color: rgba(188, 156, 98, 0.5) !important;
	box-shadow: 0 0 0 3px rgba(188, 156, 98, 0.15) !important;
}

.search-bar button[style*="background: #b4842c"] {
	background: rgba(188, 156, 98, 0.9) !important;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
	box-shadow: 0 4px 15px rgba(188, 156, 98, 0.3) !important;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.search-bar button:hover {
	background: rgba(188, 156, 98, 1) !important;
	box-shadow: 0 6px 20px rgba(188, 156, 98, 0.4) !important;
	transform: translateY(-2px);
}

/* Sidebar widgets */
.sidebar-widget[style*="background: linear-gradient"] {
	background: rgba(30, 30, 30, 0.55) !important;
	backdrop-filter: blur(20px) saturate(170%) !important;
	-webkit-backdrop-filter: blur(20px) saturate(170%) !important;
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
	border-radius: 16px !important;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4) !important;
}

/* Category list items */
.category-list a {
	background: rgba(255, 255, 255, 0.03) !important;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.05) !important;
	transition: all 0.3s ease !important;
}

.category-list a:hover,
.category-list a.active {
	background: rgba(188, 156, 98, 0.15) !important;
	border-color: rgba(188, 156, 98, 0.4) !important;
}

/* Recent posts items */
#recentPostsList .recent-post-item {
	background: rgba(255, 255, 255, 0.03);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	padding: 12px;
	margin-bottom: 12px;
	transition: all 0.3s ease;
}

#recentPostsList .recent-post-item:hover {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(188, 156, 98, 0.3);
	transform: translateX(5px);
}

/* Blog post cards in list */
.blog-post-card {
	background: rgba(30, 30, 30, 0.55) !important;
	backdrop-filter: blur(20px) saturate(170%);
	-webkit-backdrop-filter: blur(20px) saturate(170%);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	margin-bottom: 25px;
}

.blog-post-card:hover {
	background: rgba(40, 40, 40, 0.65) !important;
	border-color: rgba(188, 156, 98, 0.3);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
	transform: translateY(-5px);
}

/* Blog post meta info */
.blog-meta-info {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 8px;
	padding: 8px 12px;
}

/* ================================================
   PHOTOS PAGE GLASSMORPHISM
   ================================================ */

/* Gallery container */
.gallery-container {
	background: transparent !important;
}

/* Gallery items */
.gallery-item {
	background: rgba(30, 30, 30, 0.5) !important;
	backdrop-filter: blur(15px) saturate(150%);
	-webkit-backdrop-filter: blur(15px) saturate(150%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px !important;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	padding: 0 !important;
}

.gallery-item:hover {
	border-color: rgba(188, 156, 98, 0.4);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
	transform: scale(1.05) translateY(-5px);
}

.gallery-item img {
	border-radius: 16px !important;
	border: none !important;
}

/* Gallery pagination */
.pagination button {
	background: rgba(30, 30, 30, 0.6) !important;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
	color: #ddd !important;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
}

.pagination button:hover:not([disabled]) {
	background: rgba(188, 156, 98, 0.6) !important;
	border-color: rgba(188, 156, 98, 0.8) !important;
	box-shadow: 0 4px 12px rgba(188, 156, 98, 0.3);
	transform: translateY(-2px);
}

.pagination button.active {
	background: rgba(188, 156, 98, 0.9) !important;
	border-color: rgba(188, 156, 98, 1) !important;
	box-shadow: 0 4px 15px rgba(188, 156, 98, 0.4);
}

.pagination button[disabled] {
	opacity: 0.3 !important;
	background: rgba(30, 30, 30, 0.3) !important;
}

/* LightGallery modal overlay */
.lg-backdrop {
	background: rgba(0, 0, 0, 0.95) !important;
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
}

.lg-outer {
	background: transparent !important;
}

/* LightGallery controls */
.lg-toolbar,
.lg-actions {
	background: rgba(0, 0, 0, 0.5) !important;
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border-radius: 12px;
}

.lg-icon {
	color: #fff !important;
	transition: all 0.3s ease;
}

.lg-icon:hover {
	color: #bc9c62 !important;
	transform: scale(1.1);
}

/* ================================================
   COMMENTS PAGE GLASSMORPHISM  
   ================================================ */

/* Comments list container */
.comments-list {
	background: rgba(30, 30, 30, 0.5);
	backdrop-filter: blur(15px) saturate(150%);
	-webkit-backdrop-filter: blur(15px) saturate(150%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 25px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Individual comment cards */
.comment-card {
	background: rgba(255, 255, 255, 0.05) !important;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.08) !important;
	border-radius: 12px;
	padding: 20px;
	margin-bottom: 20px;
	transition: all 0.3s ease;
}

.comment-card:hover {
	background: rgba(255, 255, 255, 0.08) !important;
	border-color: rgba(188, 156, 98, 0.3) !important;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
	transform: translateX(5px);
}

/* Comment header */
.comment-header {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 15px;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(188, 156, 98, 0.2);
}

/* Comment avatar */
.comment-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 2px solid rgba(188, 156, 98, 0.5);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Star rating */
.star-rating {
	color: #ffd700 !important;
	text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* ================================================
   CORPORATE/POLICY PAGES GLASSMORPHISM
   ================================================ */

/* Main corporate container */
.corporate-wrapper {
	background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
	background-attachment: fixed;
	min-height: 100vh;
	padding: 40px 0;
}

/* Corporate content box */
.corporate-box {
	background: rgba(30, 30, 30, 0.55);
	backdrop-filter: blur(20px) saturate(170%);
	-webkit-backdrop-filter: blur(20px) saturate(170%);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 40px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
	margin-bottom: 30px;
}

/* Corporate headings */
.corporate-box h1 {
	color: #f0f0f0 !important;
	border-bottom: 2px solid rgba(188, 156, 98, 0.4);
	padding-bottom: 20px;
	margin-bottom: 30px;
}

.corporate-box h2 {
	color: #f0f0f0 !important;
	margin-top: 30px;
	margin-bottom: 20px;
	border-left: 4px solid rgba(188, 156, 98, 0.6);
	padding-left: 15px;
}

.corporate-box h3 {
	color: #ddd !important;
	margin-top: 25px;
	margin-bottom: 15px;
}

/* Corporate text */
.corporate-box p,
.corporate-box li {
	color: #ccc !important;
	line-height: 1.8;
	margin-bottom: 15px;
}

.corporate-box ul,
.corporate-box ol {
	background: rgba(255, 255, 255, 0.03);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	border-left: 3px solid rgba(188, 156, 98, 0.3);
	border-radius: 8px;
	padding: 20px 20px 20px 40px;
	margin: 20px 0;
}

.corporate-box li {
	margin-bottom: 10px;
}

/* Corporate links */
.corporate-box a {
	color: #bc9c62 !important;
	text-decoration: none;
	border-bottom: 1px solid rgba(188, 156, 98, 0.3);
	transition: all 0.3s ease;
}

.corporate-box a:hover {
	color: #d4b87c !important;
	border-bottom-color: rgba(188, 156, 98, 0.6);
}

/* Table styling for corporate pages */
.corporate-box table {
	width: 100%;
	background: rgba(255, 255, 255, 0.03);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	overflow: hidden;
	margin: 20px 0;
}

.corporate-box table th {
	background: rgba(188, 156, 98, 0.2);
	color: #f0f0f0 !important;
	padding: 12px;
	font-weight: 600;
	border-bottom: 2px solid rgba(188, 156, 98, 0.4);
}

.corporate-box table td {
	color: #ccc !important;
	padding: 12px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.corporate-box table tr:hover {
	background: rgba(255, 255, 255, 0.05);
}

/* Blockquote styling */
.corporate-box blockquote {
	background: rgba(188, 156, 98, 0.1);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-left: 4px solid rgba(188, 156, 98, 0.6);
	border-radius: 8px;
	padding: 20px;
	margin: 25px 0;
	font-style: italic;
	color: #ddd !important;
}

/* Code blocks */
.corporate-box code {
	background: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 6px;
	padding: 2px 8px;
	font-family: 'Courier New', monospace;
	color: #bc9c62 !important;
}

.corporate-box pre {
	background: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 20px;
	overflow-x: auto;
	margin: 20px 0;
}

.corporate-box pre code {
	background: transparent;
	border: none;
	padding: 0;
}

/* ================================================
   FORM & SELECT ENHANCEMENTS - FINAL FIX
   ================================================ */

/* Passenger selection dropdown fix */
.form-passengers {
	background: rgba(255, 255, 255, 0.06) !important;
	backdrop-filter: blur(15px) saturate(160%);
	-webkit-backdrop-filter: blur(15px) saturate(160%);
	border: 1px solid rgba(255, 255, 255, 0.15) !important;
	color: #fff !important;
	box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Select2 result items color fix */
.select2-results__option {
	background: transparent !important;
	color: #ddd !important;
	padding: 10px 15px;
}

.select2-results__option[aria-selected="true"] {
	background: rgba(188, 156, 98, 0.25) !important;
	color: #fff !important;
}

.select2-results__option--highlighted[aria-selected] {
	background: rgba(188, 156, 98, 0.45) !important;
	color: #fff !important;
}

/* Select2 search input in dropdown */
.select2-search--dropdown .select2-search__field {
	background: rgba(255, 255, 255, 0.08) !important;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.15) !important;
	color: #fff !important;
	padding: 10px 15px;
}

.select2-search--dropdown .select2-search__field:focus {
	border-color: rgba(188, 156, 98, 0.5) !important;
	box-shadow: 0 0 0 2px rgba(188, 156, 98, 0.15);
}

/* Select2 placeholder color */
.select2-selection__placeholder {
	color: rgba(255, 255, 255, 0.5) !important;
}

/* Select2 single selection rendered text */
.select2-selection__rendered {
	color: #fff !important;
}

/* Form passenger box labels and inputs */
.form-passenger-box label {
	color: #f0f0f0 !important;
	font-weight: 500;
}

.form-passenger-box .select2-container--default .select2-selection--single {
	background: rgba(255, 255, 255, 0.08) !important;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.15) !important;
	height: auto !important;
	padding: 8px 12px;
}

.form-passenger-box .select2-selection__rendered {
	color: #222 !important;
	line-height: 1.5;
	padding: 0 !important;
}

/* Zebra Datepicker text colors */
.Zebra_DatePicker .dp_daypicker td,
.Zebra_DatePicker .dp_daypicker th {
	color: #ddd !important;
}

.Zebra_DatePicker .dp_header .dp_caption {
	color: #f0f0f0 !important;
	font-weight: 600;
}

.Zebra_DatePicker .dp_disabled {
	color: #666 !important;
	opacity: 0.4;
}

.Zebra_DatePicker .dp_not_in_month {
	color: #777 !important;
}

/* Transfer form specific - location & destination selects */
.transfer-form .form-group .select2-container--default .select2-selection--single .select2-selection__rendered {
	color: #fff !important;
	line-height: 22px;
}

.transfer-form .form-group .select2-container--default .select2-selection--single .select2-selection__placeholder {
	color: rgba(255, 255, 255, 0.65) !important;
}

/* Transfer form dropdown results */
.transfer-form .select2-dropdown .select2-results__option {
	color: #fff !important;
	background: transparent;
}

.transfer-form .select2-dropdown .select2-results__option[aria-selected="true"] {
	background: rgba(188, 156, 98, 0.25) !important;
}

.transfer-form .select2-dropdown .select2-results__option--highlighted {
	background: rgba(188, 156, 98, 0.45) !important;
	color: #fff !important;
}

/* Select2 groups in dropdown */
.select2-results__group {
	background: rgba(188, 156, 98, 0.2) !important;
	color: #f0f0f0 !important;
	font-weight: 600;
	padding: 10px 15px;
}

/* Dropdown arrow color */
.select2-selection__arrow b {
	border-color: rgba(255, 255, 255, 0.7) transparent transparent transparent !important;
}

.select2-container--default.select2-container--open .select2-selection__arrow b {
	border-color: transparent transparent rgba(255, 255, 255, 0.7) transparent !important;
}

/* Input autofill override */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
	-webkit-text-fill-color: #fff !important;
	-webkit-box-shadow: 0 0 0px 1000px rgba(30, 30, 30, 0.6) inset !important;
	transition: background-color 5000s ease-in-out 0s;
}

/* Ensure all form labels are visible */
.form-label,
label {
	color: #ddd !important;
}

/* Radio and checkbox custom styling */
input[type="radio"],
input[type="checkbox"] {
	accent-color: #bc9c62;
}

/* Number input spinners */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	opacity: 0.7;
}

/* Textarea scrollbar */
textarea::-webkit-scrollbar {
	width: 8px;
}

textarea::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0.2);
	border-radius: 4px;
}

textarea::-webkit-scrollbar-thumb {
	background: rgba(188, 156, 98, 0.5);
	border-radius: 4px;
}

textarea::-webkit-scrollbar-thumb:hover {
	background: rgba(188, 156, 98, 0.7);
}

/* Button hover effects enhancement */
button:not(:disabled):hover,
.btn:not(:disabled):hover,
input[type="submit"]:not(:disabled):hover {
	filter: brightness(1.1);
	transform: translateY(-1px);
}

button:not(:disabled):active,
.btn:not(:disabled):active,
input[type="submit"]:not(:disabled):active {
	transform: translateY(0);
}

/* Disabled state */
button:disabled,
.btn:disabled,
input:disabled,
select:disabled,
textarea:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	filter: grayscale(50%);
}

/* Focus visible for accessibility */
*:focus-visible {
	outline: 2px solid rgba(188, 156, 98, 0.5);
	outline-offset: 2px;
}

/* Selection color */
::selection {
	background: rgba(188, 156, 98, 0.5);
	color: #fff;
}

::-moz-selection {
	background: rgba(188, 156, 98, 0.5);
	color: #fff;
}
