/* Additional custom styles for existing content */
:root {
	/* Brand Colors - Luxury Travel Theme */
	--primary-gradient: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
	--secondary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	--accent-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
	--gold-gradient: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);

	/* Neutral Colors */
	--dark-primary: #1a1a2e;
	--dark-secondary: #16213e;
	--dark-accent: #0f3460;
	--light-primary: #ffffff;
	--light-secondary: #f8fafc;
	--text-primary: #2d3748;
	--text-secondary: #718096;
	--text-light: #a0aec0;

	/* Glassmorphism */
	--glass-bg: rgba(255, 255, 255, 0.1);
	--glass-border: rgba(255, 255, 255, 0.2);
	--glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);

	/* Spacing & Layout */
	--section-padding: 120px 0;
	--container-padding: 0 20px;
	--border-radius-sm: 8px;
	--border-radius: 16px;
	--border-radius-lg: 24px;
	--border-radius-xl: 32px;

	/* Shadows */
	--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
	--shadow-md: 0 8px 25px rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.15);
	--shadow-xl: 0 25px 80px rgba(0, 0, 0, 0.25);

	/* Transitions */
	--transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
	--transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Reset & Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	line-height: 1.7;
	color: var(--text-primary);
	background: var(--light-secondary);
	overflow-x: hidden;
	font-optical-sizing: auto;
}

h3.section.heading-tours {
    font-size: 24px !important;
    color: #000 !important ;
}

p.section.parag-tours {
    font-size: 16px !important;
    color: #203757 !important;
    font-weight: 500 !important;
}

/* Hero Section - Premium Design */
.hero-section {
	position: relative;
	height: 100vh;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.imggo {
	width: 100%;
	height: 100vh;
	object-fit: cover;
	filter: brightness(0.7) contrast(1.1) saturate(1.2);
	transition: var(--transition-slow);
}

.img-brahim {
	width: 100%;
	height: 85vh;
	object-fit: cover;
	filter: brightness(0.9) contrast(1.05);
	transition: var(--transition-normal);
}

.img-brahim_ye {
	width: 100%;
	height: 100vh;
	object-fit: cover;
}

/* Hero Carousel with Glassmorphism Overlay */
#image-carousel_ye {
	position: relative;
	border-radius: 0 0 var(--border-radius-xl) var(--border-radius-xl);
	overflow: hidden;
}

#image-carousel_ye::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg,
			rgba(30, 60, 114, 0.3) 0%,
			rgba(42, 82, 152, 0.2) 50%,
			rgba(102, 126, 234, 0.3) 100%);
	z-index: 2;
	pointer-events: none;
}

/* Hero Content with Advanced Glassmorphism */
.hero-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 10;
	text-align: center;
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: var(--border-radius-lg);
	padding: 60px 40px;
	box-shadow: var(--glass-shadow);
	max-width: 800px;
	width: 90%;
}

.hero-content h1 {
	font-size: clamp(2.5rem, 6vw, 4.5rem);
	font-weight: 800;
	color: var(--light-primary);
	margin-bottom: 24px;
	background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	line-height: 1.2;
}

.hero-content p {
	font-size: 1.25rem;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 32px;
	font-weight: 400;
}

/* Premium Section Styling */
.premium-section {
	padding: var(--section-padding);
	position: relative;
}

.premium-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 200px;
	background: linear-gradient(180deg,
			transparent 0%,
			rgba(248, 250, 252, 0.8) 50%,
			var(--light-secondary) 100%);
	pointer-events: none;
}

/* Section Headers - Luxury Design */
.section-header {
	text-align: center;
	margin-bottom: 80px;
	position: relative;
}

.section-header::before {
	content: '';
	position: absolute;
	top: -40px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 4px;
	background: var(--primary-gradient);
	border-radius: 2px;
}

.section-title {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 800;
	margin-bottom: 16px;
	background: var(--primary-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1.2;
}

.section-subtitle {
	font-size: 1.25rem;
	color: var(--text-secondary);
	font-weight: 400;
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
}

/* Premium Service Cards */
.services-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
	gap: 40px;
	padding: var(--container-padding);
}

.service-card {
	position: relative;
	background: var(--light-primary);
	border-radius: var(--border-radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-md);
	transition: var(--transition-normal);
	border: 1px solid rgba(226, 232, 240, 0.8);
	height: 480px;
	display: flex;
	flex-direction: column;
}

.service-card:hover {
	transform: translateY(-12px) scale(1.02);
	box-shadow: var(--shadow-xl);
	border-color: transparent;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--accent-gradient);
	transform: scaleX(0);
	transition: var(--transition-normal);
	z-index: 2;
}

.service-card:hover::before {
	transform: scaleX(1);
}

/* Image Container with Advanced Effects */
.service-image {
	position: relative;
	height: 280px;
	overflow: hidden;
	border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.service-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition-slow);
	filter: brightness(0.95) contrast(1.05);
}

.service-card:hover .service-image img {
	transform: scale(1.1);
	filter: brightness(1) contrast(1.1);
}

/* Image Overlay with Gradient */
.service-image::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 50%;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.4));
	opacity: 0;
	transition: var(--transition-normal);
}

.service-card:hover .service-image::after {
	opacity: 1;
}

/* Premium Badge Design */
.service-badge {
	position: absolute;
	top: 16px;
	left: 16px;
	background: var(--gold-gradient);
	color: var(--dark-primary);
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 0.875rem;
	font-weight: 700;
	box-shadow: var(--shadow-md);
	z-index: 3;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.service-badge.discount {
	background: var(--accent-gradient);
	color: var(--light-primary);
}

/* Service Content */
.service-content {
	padding: 32px 28px;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.service-title {
	font-size: 1.375rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 12px;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	height: 3.5rem;
}

.service-description {
	font-size: 16px;
	color: var(--text-secondary);
	line-height: 1.6;
	margin-bottom: 24px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Premium Button Design */
.premium-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 28px;
	background: var(--primary-gradient);
	color: var(--light-primary);
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: var(--transition-normal);
	box-shadow: var(--shadow-md);
	border: none;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.premium-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: var(--transition-normal);
}

.premium-btn:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
	color: var(--light-primary);
}

.premium-btn:hover::before {
	left: 100%;
}

.premium-btn i {
	transition: var(--transition-fast);
}

.premium-btn:hover i {
	transform: translateX(4px);
}

/* Contact Section - Glassmorphism Design */
.contact-section {
	background: linear-gradient(135deg,
			var(--dark-primary) 0%,
			var(--dark-secondary) 50%,
			var(--dark-accent) 100%);
	background-attachment: fixed;
	position: relative;
	padding: var(--section-padding);
}

.contact-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('<?= base_url() ?>assets/frontend/images/camel-leash-tourists.jpg') center/cover;
	opacity: 0.1;
	z-index: 1;
}

.contact-content {
	position: relative;
	z-index: 2;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	max-width: 1200px;
	margin: 0 auto;
}

.contact-info {
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: var(--border-radius-lg);
	padding: 40px;
	box-shadow: var(--glass-shadow);
}

.contact-info h3 {
	color: var(--light-primary);
	font-size: 1.5rem;
	margin-bottom: 32px;
	font-weight: 700;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 24px;
	color: rgba(255, 255, 255, 0.9);
}

.contact-icon {
	width: 48px;
	height: 48px;
	background: var(--accent-gradient);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--light-primary);
	font-size: 1.2rem;
}

/* Premium Form Design */
.premium-form {
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: var(--border-radius-lg);
	padding: 40px;
	box-shadow: var(--glass-shadow);
}

.form-input {
	width: 100%;
	padding: 16px 20px;
	background: rgba(255, 255, 255, 0.1);
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: var(--border-radius);
	color: var(--light-primary);
	font-size: 16px;
	transition: var(--transition-normal);
}

.form-input:focus {
	outline: none;
	border-color: rgba(255, 255, 255, 0.5);
	background: rgba(255, 255, 255, 0.15);
	box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

.form-input::placeholder {
	color: rgba(255, 255, 255, 0.7);
}

/* Hero Carousel Container - 70/30 Layout */
.hero-carousel-container {
	display: flex;
	width: 100%;
	min-height: 600px;
	gap: 0;
	position: relative;
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	border-radius: var(--border-radius-lg);
	margin-bottom: 40px;
}

.carousel-wrapper {
	flex: 0 0 70%;
	position: relative;
	overflow: hidden;
	border-radius: var(--border-radius-lg) 0 0 var(--border-radius-lg);
}

.best-selling-sidebar {
	flex: 0 0 30%;
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
	padding: 0px 20px;
	display: flex;
	flex-direction: column;
	border-radius: 0 var(--border-radius-lg) var(--border-radius-lg) 0;
	position: relative;
}

.best-selling-sidebar::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.8) 100%);
	backdrop-filter: blur(10px);
	border-radius: 0 var(--border-radius-lg) var(--border-radius-lg) 0;
	z-index: 1;
}

.best-selling-sidebar>* {
	position: relative;
	z-index: 2;
}

/* Best Selling Header */
.best-selling-header {
	text-align: center;
	border-bottom: 2px solid rgba(71, 159, 95, 0.2);
}

.best-selling-header h3 {
	margin-top: 0 !important;
	font-size: 25px;
	font-weight: 800;
	color: var(--text-primary);
	margin-bottom: 8px;
	background: linear-gradient(90deg, rgba(2, 158, 157, 1) 0%, rgba(0, 171, 171, 1) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.best-selling-header p {
	font-size: 16px;
	color: var(--text-secondary);
	font-weight: 500;
}

/* Best Selling Tours */
.best-selling-tours {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 3px;
	overflow-y: auto;
	padding-right: 5px;
	margin-bottom: 20px;
}

.best-tour-item {
	background: rgba(255, 255, 255, 0.9);
	border-radius: var(--border-radius);
	padding: 15px;
	box-shadow: var(--shadow-sm);
	transition: var(--transition-normal);
	border: 1px solid rgba(71, 159, 95, 0.1);
	position: relative;
	overflow: hidden;
}

.best-tour-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(71, 159, 95, 0.05) 0%, rgba(255, 255, 255, 0.05) 100%);
	opacity: 0;
	transition: var(--transition-normal);
}

.best-tour-item:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
	border-color: rgba(71, 159, 95, 0.3);
}

.best-tour-item:hover::before {
	opacity: 1;
}

.discount-badge {
	position: absolute;
	top: 8px;
	right: 8px;
	background: linear-gradient(90deg, rgba(2, 158, 157, 1) 0%, rgba(0, 171, 171, 1) 100%);
	color: white;
	padding: 4px 8px;
	border-radius: var(--border-radius-sm);
	font-size: 0.75rem;
	font-weight: 700;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
	z-index: 3;
}

.tour-content h4 {
	font-size: 12px;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 8px;
	line-height: 1.3;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.tour-rating {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 6px;
}

.tour-rating .stars {
	color: #fbbf24;
	font-size: 0.85rem;
}

.tour-rating .rating-text {
	font-size: 0.8rem;
	color: var(--text-secondary);
	font-weight: 500;
}

.tour-duration {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 10px;
	font-size: 1.70rem;
	color: var(--text-secondary);
}

.tour-duration i {
	color: #073260;
}

.tour-price {
	display: flex;
	align-items: baseline;
	gap: 6px;
	margin-bottom: 12px;
}

.tour-price .from {
	font-size: 0.8rem;
	color: var(--text-secondary);
}

.tour-price .price {
	font-size: 1.2rem;
	font-weight: 800;
	color: #073260;
}

.book-now-btn {
	display: block;
	width: 100%;
	background: linear-gradient(90deg, rgba(2, 158, 157, 1) 0%, rgba(0, 171, 171, 1) 100%);
	color: white;
	text-decoration: none;
	padding: 8px 16px;
	border-radius: var(--border-radius-sm);
	font-size: 1.02 rem;
	font-weight: 600;
	text-align: center;
	transition: var(--transition-normal);
	border: none;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.book-now-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: var(--transition-normal);
}

.book-now-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 15px rgba(71, 159, 95, 0.3);
	color: white;
	text-decoration: none;
}

.book-now-btn:hover::before {
	left: 100%;
}

/* View All Tours */
.view-all-tours {
	border-top: 1px solid rgba(71, 159, 95, 0.2);
	padding-top: 20px;
}

.view-all-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: rgba(71, 159, 95, 0.1);
	color: #073260;
	text-decoration: none;
	padding: 12px 20px;
	border-radius: var(--border-radius);
	font-weight: 600;
	transition: var(--transition-normal);
	border: 2px solid rgba(71, 159, 95, 0.2);
}

.view-all-btn:hover {
	background: rgba(71, 159, 95, 0.2);
	color: #2d5a3d;
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: var(--shadow-sm);
}

.view-all-btn i {
	transition: var(--transition-normal);
}

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

/* Carousel Specific Styles */
#image-carousel_ye {
	height: 600px;
}

#image-carousel_ye .splide__track,
#image-carousel_ye .splide__list {
	height: 100%;
}

#image-carousel_ye .splide__slide {
	height: 600px;
	position: relative;
	overflow: hidden;
}

#image-carousel_ye .img-brahim {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* Responsive Design */
@media (max-width: 1200px) {
	.hero-carousel-container {
		min-height: 500px;
	}

	#image-carousel_ye,
	#image-carousel_ye .splide__slide {
		height: 500px;
	}

	.best-selling-sidebar {
		padding: 25px 15px;
	}

	.best-selling-header h3 {
		font-size: 1.6rem;
	}
}

@media (max-width: 992px) {
	.hero-carousel-container {
		flex-direction: column;
		min-height: auto;
	}

	.carousel-wrapper {
		flex: none;
		border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
	}

	.best-selling-sidebar {
		flex: none;
		border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
		padding: 30px 20px;
	}

	.best-selling-sidebar::before {
		border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
	}

	#image-carousel_ye,
	#image-carousel_ye .splide__slide {
		height: 400px;
	}

	.best-selling-tours {
		flex-direction: row;
		overflow-x: auto;
		padding-bottom: 10px;
		gap: 15px;
	}

	.best-tour-item {
		flex: 0 0 280px;
	}
}

@media (max-width: 768px) {
	.hero-carousel-container {
		border-radius: 0;
		margin-top: 16rem !important;
	}

	.carousel-wrapper,
	.best-selling-sidebar,
	.best-selling-sidebar::before {
		border-radius: 0;
	}

	#image-carousel_ye,
	#image-carousel_ye .splide__slide {
		height: 300px;
	}

	.best-selling-sidebar {
		padding: 20px;
	}

	.best-selling-header h3 {
		font-size: 22px;
	}

	.best-tour-item {
		flex: 0 0 250px;
	}
}

@media (max-width: 480px) {
	.best-selling-tours {
		flex-direction: column;
		overflow-x: visible;
	}

	.best-tour-item {
		flex: none;
	}

	.tour-image {
		height: 100px;
	}
}

/* Advanced Responsive Design */
@media (max-width: 1024px) {
	.services-container {
		grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
		gap: 30px;
	}

	.contact-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}

@media (max-width: 768px) {
	:root {
		--section-padding: 80px 0;
	}

	.hero-content {
		padding: 40px 24px;
		width: 95%;
	}

	.services-container {
		grid-template-columns: 1fr;
		gap: 24px;
		padding: 0 16px;
	}

	.service-card {
		height: auto;
	}

	.section-header {
		margin-bottom: 60px;
	}
}

@media (max-width: 480px) {
	.hero-content h1 {
		font-size: 2rem;
	}

	.hero-content p {
		font-size: 16px;
	}

	.service-content {
		padding: 24px 20px;
	}
}

/* Advanced Loading States */
.loading-skeleton {
	background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
	background-size: 200% 100%;
	animation: loading 1.5s infinite;
}

@keyframes loading {
	0% {
		background-position: 200% 0;
	}

	100% {
		background-position: -200% 0;
	}
}

/* Scroll Animations */
.animate-in {
	opacity: 0;
	transform: translateY(40px);
	transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-in.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Floating Elements */
.floating-element {
	animation: float 6s ease-in-out infinite;
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-10px);
	}
}

/* Custom Scrollbar */
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: var(--light-secondary);
}

::-webkit-scrollbar-thumb {
	background: var(--primary-gradient);
	border-radius: 4px;
}

/* Premium Contact Form Styling */
.premium-contact-form {
	background: rgba(255, 255, 255, 0.97);
	backdrop-filter: blur(15px);
	border-radius: var(--border-radius-lg);
	padding: 32px;
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.25);
	position: relative;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-contact-form:hover {
	transform: translateY(-2px);
	box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.premium-contact-form::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--primary-gradient);
	z-index: 1;
}

.premium-contact-form::after {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: conic-gradient(from 0deg, transparent, rgba(102, 126, 234, 0.03), transparent);
	animation: rotate 20s linear infinite;
	z-index: 0;
}

@keyframes rotate {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.form-header {
	text-align: center;
	margin-bottom: 36px;
	position: relative;
	z-index: 2;
}

.form-icon {
	width: 64px;
	height: 64px;
	background: var(--primary-gradient);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	box-shadow: var(--shadow-lg);
	animation: pulse 2s infinite;
}

.form-icon i {
	font-size: 1.5rem;
	color: white;
}

@keyframes pulse {

	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.05);
	}
}

.form-title {
	font-size: 1.875rem;
	font-weight: 800;
	color: var(--text-primary);
	margin-bottom: 10px;
	background: var(--primary-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	position: relative;
	display: inline-block;
}

.form-title::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background: var(--primary-gradient);
	border-radius: 2px;
}

.form-subtitle {
	color: var(--text-secondary);
	font-size: 15px;
	font-weight: 400;
	line-height: 1.5;
	margin-top: 16px;
}

.form-body {
	position: relative;
	z-index: 2;
}

.input-wrapper {
	position: relative;
	display: block;
}

.input-icon {
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--text-light);
	font-size: 1.16px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 3;
}

.textarea-wrapper .input-icon {
	top: 20px;
	transform: none;
}

.premium-input,
.premium-textarea {
	width: 100%;
	padding: 18px 20px 18px 50px;
	border: 2px solid #e2e8f0;
	border-radius: var(--border-radius);
	font-size: 15px;
	font-weight: 500;
	color: var(--text-primary);
	background: rgba(255, 255, 255, 0.95);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	outline: none;
	font-family: inherit;
	position: relative;
	z-index: 2;
}

.premium-input:hover,
.premium-textarea:hover {
	border-color: #cbd5e1;
	background: rgba(255, 255, 255, 1);
}

.premium-textarea {
	resize: vertical;
	min-height: 130px;
	padding-top: 18px;
	line-height: 1.6;
}

.premium-input:focus,
.premium-textarea:focus {
	border-color: #667eea;
	background: rgba(255, 255, 255, 1);
	box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.08), 0 4px 16px rgba(102, 126, 234, 0.12);
	transform: translateY(-1px);
}

.premium-input:focus+.input-border,
.premium-textarea:focus+.input-border {
	transform: scaleX(1);
}

.premium-input:focus~.input-icon,
.premium-textarea:focus~.input-icon {
	color: #667eea;
	transform: translateY(-50%) scale(1.05);
}

.textarea-wrapper .premium-textarea:focus~.input-icon {
	color: #667eea;
	transform: scale(1.05);
}

.input-border {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--primary-gradient);
	transform: scaleX(0);
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border-radius: 1px;
}

.premium-input::placeholder,
.premium-textarea::placeholder {
	color: var(--text-light);
	opacity: 1;
	font-weight: 400;
}

/* Enhanced Tooltips */
.input-tooltip,
.textarea-tooltip {
	position: absolute;
	bottom: -20px;
	left: 50px;
	font-size: 12px;
	color: var(--text-light);
	opacity: 0;
	transition: all 0.3s ease;
	pointer-events: none;
}

.input-wrapper:hover .input-tooltip,
.input-wrapper:hover .textarea-tooltip {
	opacity: 1;
	bottom: -18px;
}

/* Character Counter */
.character-count {
	position: absolute;
	bottom: -20px;
	right: 10px;
	font-size: 11px;
	color: var(--text-light);
	opacity: 0;
	transition: all 0.3s ease;
}

.textarea-wrapper:focus-within .character-count {
	opacity: 1;
}

/* Enhanced Input States */
.premium-input:valid:not(:placeholder-shown),
.premium-textarea:valid:not(:placeholder-shown) {
	border-color: #10b981;
	background: rgba(16, 185, 129, 0.02);
}

.premium-input:invalid:not(:placeholder-shown),
.premium-textarea:invalid:not(:placeholder-shown) {
	border-color: #ef4444;
	background: rgba(239, 68, 68, 0.02);
}

/* Input Focus and Filled States */
.input-wrapper.focused .input-icon {
	color: #667eea;
	transform: translateY(-50%) scale(1.1);
}

.textarea-wrapper.focused .input-icon {
	color: #667eea;
	transform: scale(1.1);
}

.input-wrapper.filled .input-icon {
	color: #10b981;
}

/* Button Success State */
.premium-submit-btn {
	width: 100%;
	position: relative;
	background: var(--primary-gradient);
	color: white;
	border: none;
	padding: 16px 24px;
	border-radius: var(--border-radius);
	font-size: 1.16px;
	font-weight: 600;
	cursor: pointer;
	overflow: hidden;
	transition: var(--transition-normal);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	box-shadow: var(--shadow-md);
}

.premium-submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}

.premium-submit-btn:active {
	transform: translateY(0);
}

.premium-submit-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: var(--transition-normal);
}

.premium-submit-btn:hover::before {
	left: 100%;
}

.btn-text {
	position: relative;
	z-index: 2;
}

.btn-icon {
	position: relative;
	z-index: 2;
	transition: var(--transition-fast);
}

.premium-submit-btn:hover .btn-icon {
	transform: translateX(4px);
}

.btn-loading {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	transition: var(--transition-normal);
}

.premium-submit-btn.loading .btn-text,
.premium-submit-btn.loading .btn-icon {
	opacity: 0;
}

.premium-submit-btn.loading .btn-loading {
	opacity: 1;
}

.spinner {
	width: 20px;
	height: 20px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-top: 2px solid white;
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/* Form Validation States */
.premium-input:invalid:not(:placeholder-shown),
.premium-textarea:invalid:not(:placeholder-shown) {
	border-color: #ef4444;
}

.premium-input:valid:not(:placeholder-shown),
.premium-textarea:valid:not(:placeholder-shown) {
	border-color: #10b981;
}

/* Input Focus and Filled States */
.input-wrapper.focused .input-icon {
	color: #667eea;
	transform: translateY(-50%) scale(1.1);
}

.input-wrapper.filled .input-icon {
	color: #10b981;
}

/* Button Success State */
.premium-submit-btn.success {
	background: linear-gradient(90deg, rgba(2, 158, 157, 1) 0%, rgba(0, 171, 171, 1) 100%);
}

.premium-submit-btn.success:hover {
	transform: translateY(-2px);
	box-shadow: 0 15px 50px rgba(16, 185, 129, 0.3);
}

/* Form Animations */
.form-group {
	margin-bottom: 24px;
	position: relative;
	opacity: 0;
	transform: translateY(20px);
	animation: slideInForm 0.6s ease-out forwards;
}

.form-group:nth-child(1) {
	animation-delay: 0.1s;
}

.form-group:nth-child(2) {
	animation-delay: 0.2s;
}

.form-group:nth-child(3) {
	animation-delay: 0.3s;
}

.form-group:nth-child(4) {
	animation-delay: 0.4s;
}

.premium-submit-btn {
	opacity: 0;
	transform: translateY(20px);
	animation: slideInForm 0.6s ease-out 0.5s forwards;
}

@keyframes slideInForm {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive Design for Form */
@media (max-width: 768px) {
	.premium-contact-form {
		padding: 24px;
		margin-top: 24px;
	}

	.form-title {
		font-size: 1.5rem;
	}

	.premium-input,
	.premium-textarea {
		padding: 14px 14px 14px 44px;
	}
}

/* Enhanced Mobile & Tablet Responsive Design */

/* Tablet Landscape (1024px and below) */
@media (max-width: 1024px) {
	:root {
		--section-padding: 100px 0;
	}

	/* Contact Section Layout */
	#contact .row {
		flex-direction: column-reverse;
	}

	.col-lg-4 {
		margin-top: 40px;
	}

	/* Contact Info Improvements */
	.contact-info {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
		gap: 30px;
		padding: 30px 20px;
		margin-top: 20px;
	}

	.inatil {
		width: auto;
	}

	/* Map Responsive */
	iframe {
		height: 350px !important;
		border-radius: var(--border-radius);
	}
}

/* Tablet Portrait & Large Mobile (768px and below) */
@media (max-width: 768px) {
	:root {
		--section-padding: 80px 0;
	}

	/* Contact Section */
	#contact {
		padding: 60px 0 40px !important;
	}

	.container {
		padding: 0 15px;
	}

	/* Section Title */
	#contact .section-title h2 {
		font-size: 2rem;
		margin-bottom: 15px;
	}

	#contact .section-title span {
		font-size: 38px;
	}

	/* Contact Info Grid - Stack Vertically */
	.contact-info {
		display: flex;
		flex-direction: column;
		gap: 25px;
		text-align: center;
		padding: 25px 15px;
		margin-top: 15px;
		background: rgba(255, 255, 255, 0.95);
		border-radius: var(--border-radius);
		box-shadow: var(--shadow-md);
	}

	/* Contact Info Items */
	.contact-info>div {
		padding: 20px;
		background: rgba(248, 250, 252, 0.8);
		border-radius: var(--border-radius);
		transition: var(--transition-normal);
	}

	.contact-info>div:hover {
		background: rgba(102, 126, 234, 0.1);
		transform: translateY(-2px);
	}

	/* Icons */
	.f-cta-icon {
		margin-bottom: 15px;
	}

	.f-cta-icon i {
		font-size: 2rem;
		color: #073260;
		background: rgba(102, 126, 234, 0.1);
		padding: 15px;
		border-radius: 50%;
		width: 60px;
		height: 60px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	/* Contact Info Text */
	.contact-info h5 {
		font-size: 1.16px;
		font-weight: 600;
		color: var(--text-primary);
		margin-bottom: 8px;
	}

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

	/* Map Adjustments */
	iframe {
		height: 300px !important;
		border-radius: var(--border-radius);
		margin-bottom: 20px;
	}

	/* Form Enhancements */
	.premium-contact-form {
		padding: 20px;
		margin-top: 30px;
	}

	.form-header {
		margin-bottom: 25px;
	}

	.form-title {
		font-size: 1.4rem;
	}

	.form-subtitle {
		font-size: 0.9rem;
	}
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
	:root {
		--section-padding: 60px 0;
	}

	/* Contact Section */
	#contact {
		padding: 40px 0 30px !important;
		margin-top: 40px !important;
	}

	.container {
		padding: 0 10px;
	}

	/* Section Titles */
	#contact .section-title h2 {
		font-size: 1.75rem;
		line-height: 1.3;
	}

	#contact .section-title {
		margin-bottom: 20px;
	}

	/* Map */
	iframe {
		height: 250px !important;
		margin-bottom: 15px;
	}

	/* Contact Info - More Compact */
	.contact-info {
		gap: 20px;
		padding: 20px 10px;
		margin-top: 10px;
	}

	.contact-info>div {
		padding: 15px;
	}

	.f-cta-icon i {
		font-size: 1.5rem;
		width: 50px;
		height: 50px;
		padding: 12px;
	}

	.contact-info h5 {
		font-size: 15px;
		margin-bottom: 6px;
	}

	.contact-info p {
		font-size: 0.85rem;
	}

	/* Form Mobile Optimizations */
	.premium-contact-form {
		padding: 16px;
		margin-top: 25px;
	}

	.form-header {
		margin-bottom: 20px;
	}

	.form-title {
		font-size: 1.25rem;
		line-height: 1.3;
	}

	.form-subtitle {
		font-size: 0.85rem;
		line-height: 1.4;
	}

	.form-group {
		margin-bottom: 20px;
	}

	.premium-input,
	.premium-textarea {
		padding: 12px 12px 12px 40px;
		font-size: 14px;
	}

	.input-icon {
		left: 12px;
		font-size: 16px;
	}

	.premium-textarea {
		min-height: 100px;
	}

	.premium-submit-btn {
		padding: 14px 20px;
		font-size: 16px;
	}
}

/* Extra Small Mobile (360px and below) */
@media (max-width: 360px) {
	.container {
		padding: 0 8px;
	}

	#contact .section-title h2 {
		font-size: 1.5rem;
	}

	iframe {
		height: 220px !important;
	}

	.contact-info {
		padding: 15px 8px;
	}

	.contact-info>div {
		padding: 12px;
	}

	.premium-contact-form {
		padding: 12px;
	}

	.form-title {
		font-size: 1.16px;
	}

	.form-subtitle {
		font-size: 0.8rem;
	}

	.premium-input,
	.premium-textarea {
		padding: 10px 10px 10px 36px;
		font-size: 13px;
	}

	.input-icon {
		left: 10px;
		font-size: 0.9rem;
	}
}

/* Landscape Mobile Orientation */
@media (max-width: 768px) and (orientation: landscape) {
	#contact {
		padding: 40px 0 30px !important;
	}

	iframe {
		height: 280px !important;
	}

	.contact-info {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 15px;
		padding: 20px 10px;
	}

	.contact-info>div {
		padding: 15px 10px;
	}

	.f-cta-icon i {
		font-size: 1.3rem;
		width: 45px;
		height: 45px;
		padding: 10px;
	}

	.contact-info h5 {
		font-size: 0.95rem;
	}

	.contact-info p {
		font-size: 0.8rem;
	}
}

/* Additional Mobile Enhancements */
@media (max-width: 480px) {

	/* Touch-friendly interactions */
	.premium-contact-form {
		border-radius: 16px;
		box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
		margin: 20px 8px;
	}

	.form-icon {
		width: 56px;
		height: 56px;
		margin-bottom: 16px;
	}

	.form-icon i {
		font-size: 1.3rem;
	}
}



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

.about-us-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
}

.about-us-content {
	position: relative;
	z-index: 2;
}

.section-header {
	margin-bottom: -25px;
}

.about-title {
	font-size: 2.8rem;
	font-weight: 700;
	color: #2d3748;
	margin-bottom: 20px;
	font-family: 'Poppins', sans-serif;
	letter-spacing: -0.5px;
}

.title-decoration {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	margin-bottom: 10px;
}

.decoration-line {
	width: 50px;
	height: 2px;
	background: linear-gradient(90deg, #073260, #5cb879);
	border-radius: 2px;
}

.decoration-icon {
	color: #073260;
	font-size: 1.2rem;
	animation: pulse 2s infinite;
}

.about-description {
	/* background: rgba(255, 255, 255, 0.9); */
	padding: 40px;
	border-radius: 20px;
	box-shadow:
		0 20px 25px -5px rgba(0, 0, 0, 0.1),
		0 10px 10px -5px rgba(0, 0, 0, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(10px);
	margin-bottom: 50px;
	position: relative;
	overflow: hidden;
}

.about-description::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, rgba(2, 158, 157, 1) 0%, rgba(0, 171, 171, 1) 100%);
	background-size: 200% 100%;
	animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {

	0%,
	100% {
		background-position: -200% 0;
	}

	50% {
		background-position: 200% 0;
	}
}

.lead-text {
	font-size: 16px;
	line-height: 1.8;
	color: #4a5568;
	margin: 0;
	font-weight: 400;
	text-align: center;
	font-family: 'Inter', sans-serif;
}

.lead-text strong {
	color: #073260;
	font-weight: 600;
}

.about-highlights {
	margin-top: 30px;
}

.highlight-item {
	text-align: center;
	padding: 30px 20px;
	background: rgba(255, 255, 255, 0.7);
	border-radius: 15px;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(5px);
	height: 100%;
}

.highlight-item:hover {
	transform: translateY(-10px);
	box-shadow:
		0 25px 30px -5px rgba(0, 0, 0, 0.15),
		0 15px 15px -5px rgba(0, 0, 0, 0.08);
	background: rgba(255, 255, 255, 0.95);
	border-color: rgba(71, 159, 95, 0.2);
}

.highlight-icon {
	width: 70px;
	height: 70px;
	margin: 0 auto 20px;
	background: linear-gradient(135deg, #073260, #5cb879);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.8rem;
	box-shadow: 0 10px 20px rgba(71, 159, 95, 0.3);
	transition: all 0.3s ease;
}

.highlight-item:hover .highlight-icon {
	transform: scale(1.1) rotateY(360deg);
	box-shadow: 0 15px 30px rgba(71, 159, 95, 0.4);
}

.highlight-item h5 {
	font-size: 1.3rem;
	font-weight: 600;
	color: #2d3748;
	margin-bottom: 10px;
	font-family: 'Poppins', sans-serif;
}

.highlight-item p {
	color: #718096;
	font-size: 1rem;
	margin: 0;
	font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
	.about-us-section {
		padding: 60px 0;
	}

	.about-title {
		font-size: 2.2rem;
	}

	.about-description {
		padding: 30px 25px;
		margin-bottom: 40px;
	}

	.lead-text {
		font-size: 1.1rem;
		line-height: 1.7;
	}

	.decoration-line {
		width: 35px;
	}

	.highlight-item {
		padding: 25px 15px;
		margin-bottom: 20px;
	}

	.highlight-icon {
		width: 60px;
		height: 60px;
		font-size: 1.5rem;
	}
}

@media (max-width: 480px) {
	.about-title {
		font-size: 1.9rem;
	}

	.about-description {
		padding: 25px 20px;
	}

	.lead-text {
		font-size: 1rem;
	}
}

.about-cta {
	text-align: center;
	margin-top: 30px;
	padding-bottom: 10px;
}

.about-us-btn {
	display: inline-flex;
	align-items: center;
	background: linear-gradient(90deg, rgba(2, 158, 157, 1) 0%, rgba(0, 171, 171, 1) 100%);
	color: #fff;
	font-weight: 600;
	padding: 12px 28px;
	border-radius: 30px;
	text-decoration: none;
	box-shadow: 0 4px 15px rgba(71, 159, 95, 0.3);
	transition: all 0.3s ease;
}

.about-us-btn span {
	margin-right: 10px;
}

.about-us-btn i {
	transition: transform 0.3s ease;
}

.about-us-btn:hover {
	background: linear-gradient(to right, #3d8a52, #073260);
	box-shadow: 0 6px 20px rgba(71, 159, 95, 0.4);
	color: #fff;
	transform: translateY(-2px);
}

.about-us-btn:hover i {
	transform: translateX(5px);
}


/* Day Trips from Marrakech Section Styling */
.day-trips-section {
	padding: 10px 0;
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
	position: relative;
	overflow: hidden;
}

.day-trips-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background:
		radial-gradient(circle at 20% 80%, rgba(71, 159, 95, 0.03) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(71, 159, 95, 0.05) 0%, transparent 50%);
	pointer-events: none;
}

.section-title .highlight {
	color: #073260;
	position: relative;
}

.section-title .highlight::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #073260, #5cb879);
	border-radius: 2px;
}

.section-subtitle {
	font-size: 1.4rem;
	color: #4a5568;
	font-weight: 600;
	margin-bottom: 15px;
	font-family: 'Inter', sans-serif;
}

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

/* Tours Carousel Styling */
.tours-carousel-wrapper {
	position: relative;
	z-index: 2;
}

/* .tours-carousel {
	margin-bottom: 10px;
} */

.tour-card {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	margin: 10px;
	border: 1px solid rgba(255, 255, 255, 0.9);
	height: 435px;
	display: flex;
	flex-direction: column;
}

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

.tour-image-container {
	position: relative;
	height: 250px;
	overflow: hidden;
}

.tour-image {
	position: relative;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--border-radius-sm);
	overflow: hidden;
	margin-bottom: 12px;
	transition: var(--transition-normal);
}

.tour-card:hover .tour-image,
.best-tour-item:hover .tour-image img {
	transform: scale(1.05);
}

.image-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.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tour-card:hover .image-overlay {
	opacity: 1;
}

.overlay-content {
	text-align: center;
	color: white;
}

.overlay-content i {
	font-size: 2rem;
	margin-bottom: 10px;
	display: block;
}

.discount-badge {
	position: absolute;
	top: 15px;
	right: 15px;
	background: linear-gradient(135deg, #ef4444, #dc2626);
	color: white;
	padding: 8px 12px;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 600;
	box-shadow: 0 4px 10px rgba(239, 68, 68, 0.3);
}

.tour-type-badge {
	position: absolute;
	top: 15px;
	left: 15px;
	background: rgba(255, 255, 255, 0.95);
	color: #073260;
	padding: 8px 12px;
	border-radius: 20px;
	font-size: 8px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 5px;
	backdrop-filter: blur(5px);
}

.tour-content-wrapper {
	padding: 25px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.tour-title {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 15px;
	line-height: 1.4;
}

.tour-title a {
	color: #2d3748;
	text-decoration: none;
	transition: color 0.3s ease;
}

.tour-title a:hover {
	color: #073260;
}

.tour-meta {
	display: flex;
	gap: 20px;
	margin-bottom: 15px;
}

.tour-duration,
.tour-transport {
	display: flex;
	align-items: center;
	gap: 5px;
	color: #718096;
	font-size: 0.9rem;
}

.tour-highlights {
	margin-bottom: 20px;
	flex: 1;
}

.highlights-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.highlights-list li {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 8px;
	font-size: 0.9rem;
	color: #4a5568;
}

.highlights-list i {
	color: #073260;
	font-size: 0.8rem;
}

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

.price-section {
	display: flex;
	flex-direction: column;
}

.price-label {
	font-size: 0.8rem;
	color: #718096;
	margin-bottom: 2px;
}

.price {
	font-size: 1.4rem;
	font-weight: 700;
	color: #073260;
}

.price-unit {
	font-size: 0.8rem;
	color: #718096;
}

.price-custom {
	font-size: 1rem;
	font-weight: 600;
	color: #073260;
}

.book-now-btn {
	color: white;
	padding: 12px 20px;
	border-radius: 10px;
	text-decoration: none;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 10px rgba(71, 159, 95, 0.3);
}

.book-now-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(71, 159, 95, 0.4);
	color: white;
	text-decoration: none;
}

/* Carousel Navigation */
.carousel-navigation {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 30px;
}

.carousel-btn {
	width: 50px;
	height: 50px;
	background: linear-gradient(90deg, rgba(2, 158, 157, 1) 0%, rgba(0, 171, 171, 1) 100%);
	color: white;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 15px rgba(71, 159, 95, 0.3);
}

.carousel-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(71, 159, 95, 0.4);
}

.carousel-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	transform: none;
}

/* View All Tours CTA */
.view-all-section {
	margin-top: 40px;
}

.view-all-tours-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(90deg, rgba(2, 158, 157, 1) 0%, rgba(0, 171, 171, 1) 100%);
	color: white;
	padding: 15px 30px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	transition: all 0.3s ease;
	box-shadow: 0 8px 25px rgba(45, 55, 72, 0.3);
}

.view-all-tours-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(45, 55, 72, 0.4);
	color: white;
	text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
	.day-trips-section {
		padding: 60px 0;
	}

	.section-title {
		font-size: 2.2rem;
	}

	.section-subtitle {
		font-size: 1.2rem;
	}

	.tour-footer {
		flex-direction: column;
		gap: 15px;
		align-items: flex-start;
	}

	.book-now-btn {
		width: 100%;
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.section-title {
		font-size: 1.9rem;
	}

	.section-subtitle {
		font-size: 1.1rem;
	}

	.view-all-tours-btn {
		padding: 12px 25px;
		font-size: 1rem;
	}
}


.activities-section,
.hotels-section {
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
	padding: 80px 0;
}

.tour-rating {
	display: flex;
	align-items: center;
	gap: 8px;
}

.stars {
	display: flex;
	gap: 2px;
}

.stars i {
	color: #fbbf24;
	font-size: 0.875rem;
}

.rating-text {
	font-size: 0.875rem;
	color: #6b7280;
	font-weight: 500;
}

.carousel-navigation {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-top: 2rem;
}

.carousel-prev,
.carousel-next {
	background: #029e9d;
	color: white;
	border: none;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(71, 159, 95, 0.3);
}

.carousel-prev:hover,
.carousel-next:hover {
	background: #2d5a3d;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(71, 159, 95, 0.4);
}

.view-all-section {
	margin-top: 3rem;
}

@media (max-width: 768px) {
	.carousel-navigation {
		gap: 0.5rem;
	}

	.carousel-prev,
	.carousel-next {
		width: 40px;
		height: 40px;
	}
}

.splide__slide img {
    /* aspect-ratio: 16 / 9; */
    object-fit: cover;
    width: 100%;
    height: 250px;
}

.blog-card-content.tour-content {
    padding: 0px 15px;
}