/* ----------------------------------------------------------------------------------------
* Custom Core Design Styles for Tourly / Udaan Travels
* ---------------------------------------------------------------------------------------- */

/* --- Custom Variables (:root) --- */
:root {
	/* --- Font Families --- */
	--font-headings: 'Rajdhani', sans-serif;
	--font-body: 'Poppins', sans-serif;
	--font-script: 'Playball', cursive;

	/* --- Brand Colors --- */
	--color-primary: #1caaf3;
	--color-primary-hover: #0b97dc;
	--color-secondary: #144562;
	--color-dark-bg: #0b1f2b;
	--color-dark-overlay: #081720;
	--color-text-dark: #102e42;
	--color-text-muted: #64748b;
	--color-white: #ffffff;

	/* --- Background & Theme Colors --- */
	--bg-primary: #0a1c28;
	--bg-secondary: #0f293a;
	--bg-tertiary: #173d56;
	--text-primary: #f8fafc;
	--text-secondary: #94a3b8;
	--text-muted: #64748b;

	/* --- Accent Colors --- */
	--accent-primary: #0dbcb6;
	/* Teal Accent from Pin center */
	--accent-secondary: #ffd024;
	/* Golden Yellow from "Travel Company" script font */
	--accent-gradient: linear-gradient(135deg, #1caaf3, #0dbcb6, #20dfb9);
	/* Full map-pin gradient */
	--border-color: rgba(255, 255, 255, 0.08);
	--glass-bg: rgba(15, 41, 58, 0.7);
	--glass-border: rgba(255, 255, 255, 0.06);
}

/* --- Base Styles --- */
body {
	font-family: var(--font-body);
	background-color: var(--bg-primary);
	color: var(--text-primary);
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-headings);
	font-weight: 700;
	color: var(--text-primary);
}

/* --- Custom Script Font --- */
.font-cursive {
	font-family: var(--font-script);
	color: var(--color-white);
	font-size: 28px;
	font-weight: 400;
	letter-spacing: 0.5px;
	margin-bottom: 12px;
	display: inline-block;
	opacity: 0.95;
}

/* --- Floating Navbar Style --- */
.premium-navbar {
	position: absolute !important;
	top: 30px;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 40px);
	max-width: 1300px;
	background-color: rgba(5, 11, 51, 0.8) !important;
	/* Premium Dark Navy */
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-radius: 100px;
	padding: 8px 30px !important;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3) !important;
	border: 1px solid rgba(255, 255, 255, 0.08) !important;
	z-index: 1050;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-navbar.sticky-top {
	position: fixed !important;
	top: 20px;
}

.tourly-logo {
	display: flex;
	align-items: center;
	text-decoration: none;
	transition: all 0.3s ease;
}

.tourly-logo img {
	height: 64px;
	/* Perfectly sized logo on desktop */
	width: auto;
	object-fit: contain;
	border-radius: 8px;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.tourly-logo:hover img {
	transform: scale(1.03);
	filter: brightness(1.08);
}

.tourly-logo svg {
	filter: drop-shadow(0 3px 6px rgba(0, 45, 243, 0.25));
	transition: transform 0.4s ease;
}

.tourly-logo:hover svg {
	transform: rotate(15deg) scale(1.05);
}

/* Nav Menu Links */
.tourly-navbar .nav-link {
	color: rgba(255, 255, 255, 0.85) !important;
	/* Sleek premium white */
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 15px;
	padding: 8px 16px !important;
	transition: all 0.25s ease;
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.tourly-navbar .nav-link:hover {
	color: #0abdb0 !important;
	/* Sky Blue/Teal Accent on Hover */
}

.tourly-navbar .nav-link::after {
	display: none !important;
}

.tourly-navbar .dropdown-toggle::after {
	content: '\f107';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	border: none;
	font-size: 11px;
	margin-left: 4px;
	color: rgba(255, 255, 255, 0.5);
	transition: transform 0.25s ease, color 0.25s ease;
}

.tourly-navbar .nav-link:hover .dropdown-toggle::after {
	color: #0abdb0;
}

.tourly-navbar .nav-item:hover .dropdown-toggle::after {
	transform: translateY(2px);
}

/* Premium Dropdown Menu */
.tourly-navbar .dropdown-menu {
	background-color: rgba(5, 11, 51, 0.95) !important;
	/* Match Navbar */
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border: 1px solid rgba(255, 255, 255, 0.08) !important;
	border-radius: 16px !important;
	padding: 10px 0 !important;
	margin-top: 15px !important;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4) !important;
}

.tourly-navbar .dropdown-item {
	color: rgba(255, 255, 255, 0.8) !important;
	font-family: var(--font-body);
	font-weight: 500;
	font-size: 14px;
	padding: 10px 20px !important;
	transition: all 0.25s ease;
}

.tourly-navbar .dropdown-item:hover {
	background-color: rgba(10, 189, 176, 0.1) !important;
	/* Soft sky blue/teal bg */
	color: #0abdb0 !important;
	/* Sky blue/teal text */
	transform: translateX(4px);
}

/* Navbar Right Elements */
.tourly-right-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.tourly-circle-btn {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1.5px solid rgba(255, 255, 255, 0.15);
	background: transparent;
	color: rgba(255, 255, 255, 0.9) !important;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	text-decoration: none;
}

.tourly-circle-btn:hover {
	background-color: var(--color-primary);
	color: var(--color-white) !important;
	border-color: var(--color-primary);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 45, 243, 0.25);
}

.tourly-btn-pill {
	background: var(--color-primary);
	color: var(--color-white) !important;
	font-family: var(--font-headings);
	font-weight: 600;
	font-size: 14px;
	padding: 10px 24px !important;
	border-radius: 100px;
	border: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	text-decoration: none;
	box-shadow: 0 4px 18px rgba(0, 45, 243, 0.3);
}

.tourly-btn-pill:hover {
	background-color: var(--color-primary-hover);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 45, 243, 0.45);
}

.tourly-btn-pill i {
	font-size: 12px;
	transition: transform 0.25s ease;
}

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

/* --- Hero Slider Area --- */
.hero-slider-section {
	position: relative;
	width: 100%;
	min-height: 100vh;
	height: 100vh;
	background-color: var(--color-dark-bg);
	overflow: hidden;
}

.hero-slider-section .swiper-container {
	width: 100%;
	height: 100%;
}

.hero-slider-section .swiper-slide {
	width: 100%;
	height: 100%;
	position: relative;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	display: flex !important;
	align-items: center !important;
}

/* Same-to-same Gradient overlay: deep navy on the left, fading to transparent on the right */
.hero-slide-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg,
			var(--color-dark-overlay) 0%,
			rgba(4, 10, 47, 0.95) 30%,
			rgba(4, 10, 47, 0.8) 50%,
			rgba(4, 10, 47, 0.1) 100%);
	z-index: 1;
}

.hero-slide-content {
	position: relative;
	z-index: 5;
	padding-left: 80px;
	padding-top: 50px;
	/* Offset absolute navbar */
	max-width: 800px;
}

.hero-slide-content h1 {
	font-family: var(--font-headings);
	font-size: 72px;
	font-weight: 800;
	line-height: 1.1;
	color: var(--color-white);
	margin-bottom: 24px;
	text-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
}

.hero-slide-content p {
	font-size: 18px;
	font-weight: 400;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 40px;
	max-width: 600px;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

/* --- Hero Slide Content Animations --- */
.hero-slide-content .font-cursive,
.hero-slide-content h1,
.hero-slide-content p,
.hero-slide-content .tourly-btn-pill {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.swiper-slide-active .hero-slide-content .font-cursive {
	opacity: 0.95;
	transform: translateY(0);
	transition-delay: 0.3s;
}

.swiper-slide-active .hero-slide-content h1 {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.5s;
}

.swiper-slide-active .hero-slide-content p {
	opacity: 0.8;
	transform: translateY(0);
	transition-delay: 0.7s;
}

.swiper-slide-active .hero-slide-content .tourly-btn-pill {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.9s;
}

/* --- Social Media Vertical Bar --- */
.hero-social-sidebar {
	position: absolute;
	left: 40px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 15px;
	z-index: 10;
	align-items: center;
}

.hero-social-sidebar::before {
	content: '';
	width: 1px;
	height: 80px;
	background: rgba(255, 255, 255, 0.2);
	margin-bottom: 10px;
}

.hero-social-sidebar::after {
	content: '';
	width: 1px;
	height: 80px;
	background: rgba(255, 255, 255, 0.2);
	margin-top: 10px;
}

.hero-social-btn {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: var(--color-white) !important;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	transition: all 0.3s ease;
	text-decoration: none;
}

.hero-social-btn:hover {
	background-color: var(--color-primary);
	border-color: var(--color-primary);
	transform: translateX(4px);
	box-shadow: 0 4px 15px rgba(0, 45, 243, 0.4);
}

/* --- Navigation Controls (Right Side) --- */
.hero-slider-nav {
	position: absolute;
	right: 40px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 15px;
	z-index: 10;
}

.hero-nav-btn {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	border: 1.5px solid rgba(255, 255, 255, 0.25);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-nav-btn.nav-prev {
	background-color: var(--color-white);
	color: var(--color-secondary);
	border-color: var(--color-white);
}

.hero-nav-btn.nav-next {
	background-color: var(--color-primary);
	color: var(--color-white);
	border-color: var(--color-primary);
}

.hero-nav-btn:hover {
	transform: scale(1.1);
	box-shadow: 0 8px 25px rgba(0, 45, 243, 0.35);
}

/* --- Interactive Widget (Bottom Floating Search Bar) --- */
.hero-search-widget {
	position: absolute;
	bottom: -40px;
	/* Overlap style similar to screenshot */
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 80px);
	max-width: 1100px;
	background: var(--color-white);
	border-radius: 20px;
	box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
	padding: 20px 30px;
	z-index: 20;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.search-field-item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 8px 15px;
	border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.search-field-item:last-child {
	border-right: none;
}

.search-field-icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background-color: rgba(0, 45, 243, 0.06);
	color: var(--color-primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
}

.search-field-info {
	display: flex;
	flex-direction: column;
}

.search-field-info label {
	font-family: var(--font-body);
	font-weight: 500;
	font-size: 13px;
	color: var(--color-text-muted);
	margin-bottom: 2px;
}

.search-field-info select,
.search-field-info input {
	border: none;
	outline: none;
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 16px;
	color: var(--color-secondary);
	background: transparent;
	padding: 0;
	width: 100%;
}

.tourly-search-btn {
	background: var(--color-primary);
	color: var(--color-white);
	font-family: var(--font-headings);
	font-weight: 600;
	font-size: 16px;
	border-radius: 15px;
	padding: 14px 32px;
	border: none;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 45, 243, 0.25);
}

.tourly-search-btn:hover {
	background: var(--color-primary-hover);
	box-shadow: 0 6px 20px rgba(0, 45, 243, 0.4);
	transform: translateY(-1px);
}

/* --- Main Content Area --- */
.main-content {
	flex-grow: 1;
	position: relative;
	/* padding-bottom: 80px; */
}

/* --- Premium Footer --- */
.premium-footer {
	background-color: var(--bg-secondary);
	border-top: 1px solid var(--border-color);
	color: var(--text-secondary);
	padding: 80px 0 30px 0;
	font-size: 14px;
}

.footer-title {
	color: var(--text-primary);
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 24px;
	position: relative;
	padding-bottom: 10px;
}

.footer-title::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 30px;
	height: 2px;
	background: var(--accent-gradient);
}

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

.footer-links-list li {
	margin-bottom: 12px;
}

.footer-links-list a {
	color: var(--text-secondary);
	text-decoration: none;
	transition: all 0.2s ease;
	display: inline-block;
}

.footer-links-list a:hover {
	color: var(--text-primary);
	transform: translateX(4px);
}

.social-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background-color: var(--bg-tertiary);
	color: var(--text-secondary);
	margin-right: 10px;
	transition: all 0.3s ease;
	text-decoration: none;
	border: 1px solid var(--border-color);
}

.social-btn:hover {
	color: #ffffff;
	background: var(--accent-gradient);
	transform: translateY(-3px);
	box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.contact-info-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 16px;
}

.contact-info-item i {
	color: var(--accent-primary);
	font-size: 16px;
	margin-top: 3px;
}

.contact-info-item a {
	color: var(--text-secondary);
	text-decoration: none;
	transition: color 0.2s ease;
}

.contact-info-item a:hover {
	color: var(--text-primary);
}

.footer-bottom {
	margin-top: 60px;
	padding-top: 30px;
	border-top: 1px solid var(--border-color);
}

/* --- Responsive Adjustments --- */
@media (max-width: 1199.98px) {
	.hero-slide-content {
		padding-left: 60px;
	}

	.hero-slide-content h1 {
		font-size: 56px;
	}

	.hero-search-widget {
		width: calc(100% - 40px);
		padding: 20px;
	}
}

@media (max-width: 991.98px) {
	.premium-navbar {
		border-radius: 20px;
		padding: 8px 20px !important;
		top: 15px;
		width: calc(100% - 30px);
	}

	.tourly-logo img {
		height: 48px;
		/* Compact logo on tablets */
	}

	.tourly-navbar .navbar-collapse {
		background-color: rgba(7, 11, 19, 0.96) !important;
		/* Premium Dark Navy */
		backdrop-filter: blur(15px);
		-webkit-backdrop-filter: blur(15px);
		border-radius: 16px;
		padding: 20px !important;
		margin-top: 12px;
		border: 1px solid rgba(255, 255, 255, 0.08);
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
	}

	.tourly-navbar .nav-link {
		color: rgba(255, 255, 255, 0.9) !important;
		padding: 12px 10px !important;
		width: 100%;
		border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	}

	.tourly-navbar .nav-link:hover {
		color: #38bdf8 !important;
	}

	.tourly-navbar .nav-item:last-child .nav-link {
		border-bottom: none;
	}

	/* Toggler styles */
	.premium-navbar .navbar-toggler {
		color: #ffffff !important;
		outline: none !important;
		box-shadow: none !important;
	}

	.premium-navbar .navbar-toggler i {
		color: #ffffff !important;
	}

	.tourly-right-actions {
		margin-top: 15px;
		width: 100%;
		justify-content: space-between;
	}

	.tourly-btn-pill {
		flex-grow: 1;
		text-align: center;
		justify-content: center;
	}

	.hero-slide-content {
		padding-left: 40px;
		padding-right: 40px;
		padding-top: 100px;
	}

	.hero-slide-content h1 {
		font-size: 44px;
	}

	.hero-social-sidebar {
		display: none;
		/* Hide vertical social links on tablet/mobile */
	}

	.search-field-item {
		border-right: none;
		border-bottom: 1px solid rgba(0, 0, 0, 0.08);
		padding-bottom: 12px;
		margin-bottom: 12px;
	}

	.hero-search-widget {
		position: relative;
		bottom: 0;
		margin: 40px auto 0 auto;
		width: calc(100% - 30px);
	}

	.hero-slider-section {
		height: auto;
		min-height: 80vh;
	}
}

@media (max-width: 575.98px) {
	.tourly-logo img {
		height: 40px;
		/* Extra compact on mobile phones */
	}

	.hero-slide-content {
		padding-left: 20px;
		padding-right: 20px;
		padding-top: 80px;
	}

	.hero-slide-content h1 {
		font-size: 32px;
	}

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

	.font-cursive {
		font-size: 22px;
	}

	.hero-slider-nav {
		right: 15px;
	}

	.hero-nav-btn {
		width: 42px;
		height: 42px;
		font-size: 14px;
	}
}

/* --- Offcanvas Premium Sidebar --- */
.premium-sidebar {
	width: 420px !important;
	background-color: var(--color-white) !important;
	border-left: 1px solid rgba(0, 0, 0, 0.08) !important;
	box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15) !important;
	z-index: 99999 !important;
}

.premium-sidebar .offcanvas-header {
	padding: 24px 30px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.premium-sidebar .btn-close {
	background-color: rgba(0, 0, 0, 0.04);
	padding: 10px;
	border-radius: 50%;
	transition: all 0.3s ease;
	opacity: 0.8;
}

.premium-sidebar .btn-close:hover {
	background-color: var(--color-primary);
	color: var(--color-white) !important;
	opacity: 1;
	transform: rotate(90deg);
}

.premium-sidebar .offcanvas-body {
	padding: 30px;
	overflow-y: auto;
}

/* Sidebar Sections Headers */
.sidebar-mobile-menu h4,
.sidebar-contact-info h4,
.sidebar-socials h4,
.sidebar-map h4 {
	font-family: var(--font-headings);
	color: var(--color-secondary);
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 20px;
	position: relative;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.sidebar-mobile-menu h4::after,
.sidebar-contact-info h4::after,
.sidebar-socials h4::after,
.sidebar-map h4::after {
	content: '';
	position: absolute;
	bottom: -6px;
	left: 0;
	width: 35px;
	height: 3px;
	background-color: var(--color-primary);
	border-radius: 2px;
}

/* Mobile Navigation Inside Sidebar */
.sidebar-menu-links li {
	margin-bottom: 12px;
}

.sidebar-menu-links li:last-child {
	margin-bottom: 0;
}

.sidebar-menu-links a {
	font-family: var(--font-body);
	color: var(--color-secondary);
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	display: block;
	padding: 6px 0;
	transition: all 0.25s ease;
}

.sidebar-menu-links a:hover {
	color: var(--color-primary);
	padding-left: 8px;
}

/* Contact Info Items */
.sidebar-contact-info {
	margin-bottom: 35px;
}

.contact-item {
	display: flex;
	gap: 15px;
	margin-bottom: 20px;
	align-items: flex-start;
}

.contact-item i {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background-color: rgba(0, 45, 243, 0.06);
	color: var(--color-primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.contact-item:hover i {
	background-color: var(--color-primary);
	color: var(--color-white);
}

.contact-item h6 {
	font-family: var(--font-headings);
	font-weight: 700;
	color: var(--color-secondary);
	margin-bottom: 3px;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.3px;
}

.contact-item p {
	margin-bottom: 0;
	font-size: 14px;
	color: var(--color-text-muted);
	line-height: 1.5;
	font-family: var(--font-body);
}

.contact-item p a {
	color: var(--color-text-muted);
	text-decoration: none;
	transition: color 0.25s ease;
}

.contact-item p a:hover {
	color: var(--color-primary);
}

/* Social Icons */
.sidebar-socials {
	margin-bottom: 35px;
}

.sidebar-socials .social-icons {
	display: flex;
	gap: 10px;
}

.sidebar-socials .social-icons a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid rgba(0, 0, 0, 0.08);
	color: var(--color-secondary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-size: 14px;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sidebar-socials .social-icons a:hover {
	background-color: var(--color-primary);
	color: var(--color-white);
	border-color: var(--color-primary);
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 45, 243, 0.25);
}

/* Map Container */
.sidebar-map .map-container {
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, 0.08);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.sidebar-map iframe {
	display: block;
}

@media (max-width: 480px) {
	.premium-sidebar {
		width: 100% !important;
	}
}

/* --- Hero Cloud Divider --- */
.hero-slider-section {
	position: relative;
	overflow: hidden;
}

.hero-cloud-divider {
	position: absolute;
	bottom: -50px;
	left: 0;
	width: 100%;
	z-index: 10;
	pointer-events: none;
	line-height: 0;
}

.hero-cloud-divider img {
	width: 100%;
	height: auto;
	min-height: 60px;
	object-fit: cover;
}

/* --- About Us Section --- */
.tourly-about-section {
	padding: 120px 0 100px 0;
	background-color: var(--color-white);
	position: relative;
}

.about-content-info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	height: 100%;
}

.about-subtitle {
	color: var(--color-primary);
	font-size: 28px;
	font-family: var(--font-script) !important;
	margin-bottom: 12px;
	display: block;
	text-transform: capitalize;
}

.about-title {
	font-family: var(--font-headings) !important;
	font-weight: 800;
	font-size: 48px;
	line-height: 1.2;
	color: var(--color-secondary);
	margin-bottom: 24px;
}

.about-images-wrapper {
	position: relative;
	width: 100%;
	height: 520px;
	margin-bottom: 30px;
}

/* Gray dot grid decoration */
.about-grid-bg {
	position: absolute;
	bottom: -20px;
	left: -20px;
	width: 130px;
	height: 130px;
	background-image: radial-gradient(rgba(0, 0, 0, 0.12) 1.5px, transparent 1.5px);
	background-size: 15px 15px;
	z-index: 1;
}

.about-img-left {
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	height: 80%;
	z-index: 2;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.about-img-left img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-img-right {
	position: absolute;
	top: 20%;
	right: 0;
	width: 55%;
	height: 65%;
	z-index: 3;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.about-img-right img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-img-bottom {
	position: absolute;
	bottom: 0;
	left: 18%;
	width: 42%;
	height: 35%;
	z-index: 4;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	border: 6px solid var(--color-white);
}

.about-img-bottom img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Play button overlay styling */
.video-play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 70px;
	height: 70px;
	background-color: var(--color-primary);
	color: var(--color-white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	cursor: pointer;
	z-index: 10;
	box-shadow: 0 0 0 0 rgba(0, 45, 243, 0.4);
	animation: pulsePlay 2s infinite;
	transition: all 0.3s ease;
}

.video-play-btn:hover {
	background-color: var(--color-secondary);
	transform: translate(-50%, -50%) scale(1.1);
}

.video-play-btn i {
	margin-left: 4px;
}

@keyframes pulsePlay {
	0% {
		box-shadow: 0 0 0 0 rgba(0, 45, 243, 0.7);
	}

	70% {
		box-shadow: 0 0 0 20px rgba(0, 45, 243, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(0, 45, 243, 0);
	}
}

/* Feature List items */
.about-features {
	margin-bottom: 35px;
}

.about-feature-item {
	display: flex;
	gap: 20px;
	margin-bottom: 25px;
	align-items: flex-start;
}

.about-feature-item:last-child {
	margin-bottom: 0;
}

.feature-icon-wrapper {
	width: 66px;
	height: 66px;
	border-radius: 50%;
	background-color: #f8fafc;
	border: 3px solid rgba(0, 45, 243, 0.15);
	border-left-color: var(--color-primary);
	border-top-color: var(--color-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: var(--color-primary);
	flex-shrink: 0;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-feature-item:hover .feature-icon-wrapper {
	transform: scale(1.05);
	background-color: var(--color-primary);
	color: var(--color-white);
	border-color: var(--color-primary);
}

.feature-text h5 {
	font-family: var(--font-headings) !important;
	font-weight: 700;
	font-size: 20px;
	color: var(--color-secondary);
	margin-bottom: 6px;
}

.feature-text p {
	font-family: var(--font-body) !important;
	font-size: 15px;
	color: var(--color-text-muted);
	margin-bottom: 0;
	line-height: 1.6;
}

/* Responsiveness */
@media (max-width: 991.98px) {
	.tourly-about-section {
		padding: 80px 0;
	}

	.about-title {
		font-size: 40px;
	}

	.about-images-wrapper {
		height: 480px;
		margin-bottom: 50px;
	}
}

@media (max-width: 767.98px) {
	.about-images-wrapper {
		height: 380px;
	}

	.about-title {
		font-size: 34px;
	}

	.video-play-btn {
		width: 55px;
		height: 55px;
		font-size: 18px;
	}
}

/* --- Featured Destination Section --- */
.tourly-destination-section {
	padding: 100px 0 120px 0;
	background-color: #f7f9fc;
	background-image: url('../images/home/shape-bg.png');
	background-repeat: repeat;
	background-position: center;
	position: relative;
}

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

.destination-subtitle {
	color: var(--color-primary);
	font-size: 28px;
	font-family: var(--font-script) !important;
	margin-bottom: 12px;
	display: block;
}

.destination-title {
	font-family: var(--font-headings) !important;
	font-weight: 800;
	font-size: 48px;
	line-height: 1.2;
	color: var(--color-secondary);
	margin: 0;
}

.destination-header-desc {
	font-family: var(--font-body) !important;
	font-size: 16px;
	color: var(--color-text-muted);
	line-height: 1.7;
	margin: 0;
	padding-top: 15px;
}

.destination-grid-row {
	margin-top: 40px;
}

.destination-card {
	position: relative;
	height: 380px;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 10px 25px rgba(5, 11, 51, 0.08);
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	margin-bottom: 30px;
}

.destination-card-img-wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	overflow: hidden;
}

.destination-card-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.destination-card-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg,
			rgba(5, 11, 51, 0) 40%,
			rgba(5, 11, 51, 0.8) 95%);
	z-index: 2;
}

.destination-card-content {
	position: absolute;
	bottom: 25px;
	left: 25px;
	right: 25px;
	z-index: 3;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.destination-card-info {
	padding-right: 15px;
	flex: 1;
	min-width: 0;
	max-width: calc(100% - 110px);
}

.destination-card-desc {
	font-size: 11px;
	line-height: 1.35;
	color: rgba(255, 255, 255, 0.7);
	margin-top: 6px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

@media (max-width: 767.98px) {
	.destination-card-desc {
		display: none !important;
	}
}

.destination-card-label {
	font-family: var(--font-body) !important;
	color: rgba(255, 255, 255, 0.7);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 4px;
	display: block;
}

.destination-card-title {
	font-family: var(--font-headings) !important;
	color: var(--color-white);
	font-size: 24px;
	font-weight: 700;
	margin: 0;
}

.destination-card-badge {
	background-color: var(--color-primary);
	color: var(--color-white);
	font-family: var(--font-headings) !important;
	font-size: 13px;
	font-weight: 600;
	padding: 6px 14px;
	border-radius: 30px;
	white-space: nowrap;
	box-shadow: 0 4px 10px rgba(0, 45, 243, 0.25);
	transition: all 0.3s ease;
}

/* Hover Effects */
.destination-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 35px rgba(5, 11, 51, 0.15);
}

.destination-card:hover .destination-card-img-wrap img {
	transform: scale(1.08);
}

.destination-card:hover .destination-card-badge {
	background-color: var(--color-white);
	color: var(--color-primary);
	box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* Staggered grid effect on desktop screens */
@media (min-width: 992px) {
	.destination-grid-row .col-lg-4:nth-child(3n + 2) .destination-card {
		top: -30px;
	}

	.destination-grid-row {
		margin-top: 60px;
	}
}

@media (max-width: 991.98px) {
	.tourly-destination-section {
		padding: 80px 0;
	}

	.destination-title {
		font-size: 40px;
	}

	.destination-card {
		height: 340px;
	}
}

/* --- Tour Packages Section --- */
.tourly-packages-section {
	padding: 100px 0;
	background-color: var(--color-white);
	position: relative;
	overflow: hidden;
}

/* Background SVGs */
.package-bg-trolley {
	position: absolute;
	left: 2%;
	top: 25%;
	width: 140px;
	height: auto;
	opacity: 0.06;
	pointer-events: none;
	z-index: 1;
}

.package-bg-plane {
	position: absolute;
	right: 2%;
	top: 20%;
	width: 180px;
	height: auto;
	opacity: 0.06;
	pointer-events: none;
	z-index: 1;
}

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

.packages-subtitle {
	color: var(--color-primary);
	font-size: 28px;
	font-family: var(--font-script) !important;
	margin-bottom: 12px;
	display: block;
}

.packages-title {
	font-family: var(--font-headings) !important;
	font-weight: 800;
	font-size: 48px;
	color: var(--color-secondary);
	margin: 0;
}

.package-card {
	background: #f4f7fa;
	border-radius: 20px;
	padding: 12px;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	box-shadow: 0 4px 15px rgba(5, 11, 51, 0.03);
	margin-bottom: 24px;
	position: relative;
	z-index: 2;
}

.package-img-wrap {
	border-radius: 14px;
	overflow: hidden;
	height: 160px;
	position: relative;
}

.package-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.package-body {
	padding: 15px 4px 5px 4px;
}

.package-title {
	font-family: var(--font-headings) !important;
	font-weight: 700;
	font-size: 18px;
	color: var(--color-secondary);
	line-height: 1.3;
	margin-bottom: 12px;
	height: 48px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.package-meta-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 12px;
	margin-bottom: 12px;
	border-bottom: 1px dashed rgba(5, 11, 51, 0.1);
}

.package-meta-item {
	font-family: var(--font-body) !important;
	font-size: 12px;
	color: var(--color-text-dark);
	display: flex;
	align-items: center;
	gap: 4px;
}

.package-meta-item i {
	color: var(--color-primary);
	font-size: 13px;
}

.package-price-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
}

.package-discount-badge {
	background-color: var(--color-primary);
	color: var(--color-white);
	font-family: var(--font-headings) !important;
	font-size: 11px;
	font-weight: 600;
	padding: 3px 10px;
	border-radius: 20px;
}

.package-price-wrap {
	display: flex;
	align-items: baseline;
	gap: 6px;
}

.package-price-current {
	font-family: var(--font-headings) !important;
	font-size: 24px;
	font-weight: 800;
	color: var(--color-secondary);
}

.package-price-original {
	font-family: var(--font-body) !important;
	font-size: 13px;
	color: var(--color-text-muted);
	text-decoration: line-through;
}

.package-btn-wrap {
	text-align: center;
}

.package-btn-book {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	background-color: var(--color-white);
	color: var(--color-secondary);
	font-family: var(--font-headings) !important;
	font-weight: 600;
	font-size: 13px;
	padding: 8px 20px;
	border-radius: 100px;
	border: 1px solid rgba(0, 0, 0, 0.03);
	text-decoration: none !important;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
	transition: all 0.3s ease;
	cursor: pointer;
	outline: none;
}

.package-btn-book:hover {
	background-color: var(--color-primary);
	color: var(--color-white);
	box-shadow: 0 6px 18px rgba(0, 45, 243, 0.22);
}

/* Hover States */
.package-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 35px rgba(5, 11, 51, 0.15);
	background-color: var(--color-white);
	border: 1px solid rgba(5, 11, 51, 0.05);
}

.package-card:hover .package-img-wrap img {
	transform: scale(1.06);
}

.package-card:hover .package-btn-book {
	background-color: var(--color-primary);
	color: var(--color-white);
	box-shadow: 0 5px 15px rgba(0, 45, 243, 0.3);
	border-color: var(--color-primary);
}

@media (max-width: 991.98px) {
	.tourly-packages-section {
		padding: 80px 0;
	}

	.packages-title {
		font-size: 40px;
	}

	.package-bg-trolley,
	.package-bg-plane {
		display: none;
	}
}

/* ================================================
   WhatsApp Fixed Floating Button
   ================================================ */

.whatsapp-float {
	position: fixed;
	bottom: 32px;
	right: 32px;
	z-index: 9999;
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none !important;
	animation: waBouncein 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes waBouncein {
	0% {
		transform: scale(0) translateY(60px);
		opacity: 0;
	}

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

/* The green circle icon button */
.whatsapp-float .wa-icon {
	width: 58px;
	height: 58px;
	background: #25D366;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 24px rgba(37, 211, 102, 0.50);
	position: relative;
	transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
	flex-shrink: 0;
}

.whatsapp-float .wa-icon i {
	color: #fff;
	font-size: 28px;
	line-height: 1;
}

/* Pulsing ring animation */
.whatsapp-float .wa-icon::before,
.whatsapp-float .wa-icon::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: rgba(37, 211, 102, 0.35);
	animation: waPulse 2.4s ease-out infinite;
}

.whatsapp-float .wa-icon::after {
	background: rgba(37, 211, 102, 0.18);
	animation-delay: 0.8s;
}

@keyframes waPulse {
	0% {
		transform: scale(1);
		opacity: 1;
	}

	60% {
		transform: scale(1.65);
		opacity: 0;
	}

	100% {
		transform: scale(1.65);
		opacity: 0;
	}
}

/* Hover states */
.whatsapp-float:hover .wa-icon {
	transform: scale(1.12) rotate(-6deg);
	box-shadow: 0 10px 32px rgba(37, 211, 102, 0.65);
}

/* Tooltip label */
.whatsapp-float .wa-label {
	background: #fff;
	color: #128c7e;
	font-family: var(--font-headings) !important;
	font-weight: 700;
	font-size: 13px;
	padding: 8px 14px;
	border-radius: 100px;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
	white-space: nowrap;
	opacity: 0;
	transform: translateX(10px);
	transition: opacity 0.3s ease, transform 0.3s ease;
	pointer-events: none;
	order: -1;
	/* label appears to the LEFT of the icon */
}

.whatsapp-float:hover .wa-label {
	opacity: 1;
	transform: translateX(0);
}

/* Mobile: make button slightly smaller */
@media (max-width: 575.98px) {
	.whatsapp-float {
		bottom: 20px;
		right: 20px;
	}

	.whatsapp-float .wa-icon {
		width: 50px;
		height: 50px;
	}

	.whatsapp-float .wa-icon i {
		font-size: 24px;
	}
}

/* ================================================
   Get A Quote Modal (Modern Refined Style)
   ================================================ */
.quote-modal .modal-dialog {
	max-width: 540px;
}

.quote-modal .modal-content {
	border: none;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 25px 60px rgba(5, 11, 51, 0.25);
}

.quote-modal .modal-header {
	background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
	padding: 32px 35px 25px;
	border: none;
	position: relative;
	border-radius: 24px 24px 0 0;
}

.quote-modal .modal-header .modal-title {
	font-family: var(--font-headings) !important;
	font-size: 26px;
	font-weight: 800;
	color: #fff;
	margin-bottom: 4px;
	letter-spacing: 0.5px;
}

.quote-modal .modal-header .modal-subtitle {
	font-family: var(--font-body) !important;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.85);
	margin-top: 0;
	display: block;
	font-weight: 400;
}

.quote-modal .btn-close {
	filter: invert(1) brightness(2);
	opacity: 0.8;
	position: relative;
	z-index: 2;
	transition: all 0.25s ease;
}

.quote-modal .btn-close:hover {
	opacity: 1;
	transform: scale(1.1);
}

.quote-modal .modal-body {
	padding: 35px;
	background: #fff;
}

/* Modernized form fields */
.quote-form .form-group {
	margin-bottom: 20px;
	position: relative;
}

.quote-form label {
	font-family: var(--font-body) !important;
	font-weight: 600;
	font-size: 12px;
	color: #334155; /* Slate-700 */
	margin-bottom: 6px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	display: block;
}

.quote-form .form-control,
.quote-form .form-select {
	border: 1px solid #cbd5e1; /* Sleeker border */
	border-radius: 10px;
	padding: 10px 16px;
	font-family: var(--font-body) !important;
	font-size: 14px;
	color: var(--color-text-dark);
	background-color: #f8fafc;
	transition: all 0.25s ease;
	box-shadow: none;
	height: 48px; /* Clean standard height */
}

.quote-form .form-control:focus,
.quote-form .form-select:focus {
	border-color: var(--color-primary);
	background-color: #fff;
	box-shadow: 0 0 0 4px rgba(28, 170, 243, 0.15); /* Soft premium focus glow */
	outline: none;
}

.quote-form .form-control::placeholder {
	color: #94a3b8;
}

.quote-form textarea.form-control {
	resize: none;
	height: 100px;
}

.quote-form .input-icon-wrap {
	position: relative;
}

.quote-form .input-icon-wrap .field-icon {
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	color: #94a3b8; /* Elegant slate icon */
	font-size: 15px;
	pointer-events: none;
	transition: color 0.25s ease;
}

/* Icon glows blue when field is focused */
.quote-form .input-icon-wrap:focus-within .field-icon {
	color: var(--color-primary);
}

.quote-form .input-icon-wrap textarea~.field-icon {
	top: 16px;
	transform: none;
}

.quote-form .btn-submit-quote {
	width: 100%;
	background: linear-gradient(135deg, var(--color-primary) 0%, #0dbcb6 100%);
	color: #fff;
	border: none;
	border-radius: 50px;
	padding: 14px 28px;
	font-family: var(--font-headings) !important;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	box-shadow: 0 6px 20px rgba(28, 170, 243, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.quote-form .btn-submit-quote:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(28, 170, 243, 0.45);
	filter: brightness(1.05);
}


/* ================================================
   Book Now Modal — Two-Column Split Layout
   ================================================ */
.book-modal .modal-dialog.book-modal-dialog {
	max-width: 900px;
}

.book-modal-split {
	display: flex;
	flex-direction: row;
	border: none;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 30px 80px rgba(5, 11, 51, 0.22);
	min-height: 560px;
}

/* ── Left Image Panel ── */
.book-left-panel {
	flex: 0 0 45%;
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 500px;
}

/* Dark gradient overlay so text is readable */
.book-left-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom,
			rgba(5, 11, 51, 0.15) 0%,
			rgba(5, 11, 51, 0.60) 55%,
			rgba(5, 11, 51, 0.90) 100%);
	border-radius: 0;
}

/* Discount badge top-left */
.book-left-badge {
	position: absolute;
	top: 18px;
	left: 18px;
	background: var(--color-primary);
	color: #fff;
	font-family: var(--font-headings) !important;
	font-size: 13px;
	font-weight: 700;
	padding: 5px 14px;
	border-radius: 100px;
	z-index: 3;
}

/* Close button for mobile (top-right of image) */
.book-close-mobile {
	display: none;
	position: absolute;
	top: 14px;
	right: 14px;
	width: 36px;
	height: 36px;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(4px);
	border: none;
	border-radius: 50%;
	color: #fff;
	font-size: 16px;
	cursor: pointer;
	z-index: 4;
	align-items: center;
	justify-content: center;
	transition: background 0.2s;
}

.book-close-mobile:hover {
	background: rgba(255, 255, 255, 0.35);
}

/* Tour info block at bottom of left panel */
.book-left-info {
	position: relative;
	z-index: 3;
	padding: 28px 24px;
}

.book-left-tag {
	display: inline-block;
	background: rgba(0, 45, 243, 0.75);
	color: #fff;
	font-family: var(--font-body) !important;
	font-size: 12px;
	font-weight: 500;
	padding: 4px 12px;
	border-radius: 100px;
	margin-bottom: 10px;
	letter-spacing: 0.5px;
}

.book-left-title {
	font-family: var(--font-headings) !important;
	font-size: 22px;
	font-weight: 800;
	color: #fff;
	line-height: 1.25;
	margin-bottom: 14px;
}

.book-left-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 16px;
}

.book-left-meta-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(6px);
	color: #fff;
	font-family: var(--font-body) !important;
	font-size: 13px;
	padding: 5px 12px;
	border-radius: 100px;
}

.book-left-meta-item i {
	color: rgba(255, 255, 255, 0.75);
	font-size: 12px;
}

.book-left-price-row {
	display: flex;
	align-items: baseline;
	gap: 10px;
	margin-bottom: 6px;
}

.book-left-price-now {
	font-family: var(--font-headings) !important;
	font-size: 34px;
	font-weight: 800;
	color: #fff;
}

.book-left-price-was {
	font-family: var(--font-body) !important;
	font-size: 15px;
	color: rgba(255, 255, 255, 0.55);
	text-decoration: line-through;
}

.book-left-saving {
	display: inline-block;
	background: #dcfce7;
	color: #16a34a;
	font-family: var(--font-headings) !important;
	font-size: 13px;
	font-weight: 700;
	padding: 4px 12px;
	border-radius: 100px;
}

/* ── Right Form Panel ── */
.book-right-panel {
	flex: 1;
	background: #fff;
	display: flex;
	flex-direction: column;
	position: relative;
	overflow-y: auto;
}

/* Close button top-right of right panel (desktop) */
.book-close-desktop {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 36px;
	height: 36px;
	background: #f1f5f9;
	border: none;
	border-radius: 50%;
	color: var(--color-secondary);
	font-size: 15px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s, color 0.2s;
	z-index: 5;
}

.book-close-desktop:hover {
	background: var(--color-primary);
	color: #fff;
}

.book-right-inner {
	padding: 40px 32px 32px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.book-form-heading {
	font-family: var(--font-headings) !important;
	font-size: 26px;
	font-weight: 800;
	color: var(--color-secondary);
	margin-bottom: 4px;
}

.book-form-sub {
	font-family: var(--font-body) !important;
	font-size: 13px;
	color: var(--color-text-muted);
	margin-bottom: 24px;
}

/* Form field groups */
.bform-group {
	margin-bottom: 16px;
}

.bform-group label {
	font-family: var(--font-headings) !important;
	font-size: 13px;
	font-weight: 600;
	color: var(--color-secondary);
	margin-bottom: 6px;
	display: flex;
	align-items: center;
	gap: 7px;
}

.bform-group label i {
	color: var(--color-primary);
	font-size: 13px;
}

.booking-mini-form .form-control {
	border: 2px solid #e8edf5;
	border-radius: 12px;
	padding: 11px 16px;
	font-family: var(--font-body) !important;
	font-size: 14px;
	background: #f8fafc;
	transition: all 0.3s ease;
	box-shadow: none;
	width: 100%;
}

.booking-mini-form .form-control:focus {
	border-color: var(--color-primary);
	background: #fff;
	box-shadow: 0 0 0 4px rgba(0, 45, 243, 0.08);
}

.booking-mini-form .form-control::placeholder {
	color: #a0aec0;
}

.book-trust-note {
	font-family: var(--font-body) !important;
	font-size: 12px;
	color: var(--color-text-muted);
	text-align: center;
	margin-top: 14px;
	margin-bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

.book-trust-note i {
	color: #16a34a;
}

.book-modal .btn-confirm-book {
	width: 100%;
	background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
	color: #fff;
	border: none;
	border-radius: 100px;
	padding: 14px 28px;
	font-family: var(--font-headings) !important;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 6px 20px rgba(0, 45, 243, 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 8px;
}

.book-modal .btn-confirm-book:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(0, 45, 243, 0.35);
}

/* Modal slide-up animation */
.modal.fade .modal-dialog {
	transform: translateY(40px) scale(0.97);
	transition: transform 0.35s cubic-bezier(0.34, 1.3, 0.64, 1), opacity 0.25s ease;
}

.modal.show .modal-dialog {
	transform: translateY(0) scale(1);
}

/* ── Responsive: Stack on mobile ── */
@media (max-width: 767.98px) {
	.book-modal-split {
		flex-direction: column;
	}

	.book-left-panel {
		flex: none;
		min-height: 240px;
	}

	.book-close-mobile {
		display: flex;
	}

	.book-close-desktop {
		display: none;
	}

	.book-right-inner {
		padding: 24px 20px 20px;
	}

	.book-form-heading {
		font-size: 20px;
	}

	.book-left-price-now {
		font-size: 26px;
	}

	.book-left-title {
		font-size: 18px;
	}

	.quote-modal .modal-body {
		padding: 20px;
	}
}

/* ================================================
   Car Rentals & Cab Booking Section Styling
   ================================================ */
.tourly-cabs-section {
	padding: 100px 0;
	background-color: #f7f9fc;
	position: relative;
	overflow: hidden;
}

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

.cabs-subtitle {
	color: var(--color-primary);
	font-size: 28px;
	font-family: var(--font-script) !important;
	margin-bottom: 12px;
	display: block;
}

.cabs-title {
	font-family: var(--font-headings) !important;
	font-weight: 800;
	font-size: 48px;
	color: var(--color-secondary);
	margin: 0;
}

.cab-card {
	background: var(--color-white);
	border-radius: 24px;
	padding: 16px;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	box-shadow: 0 10px 30px rgba(5, 11, 51, 0.04);
	margin-bottom: 30px;
	position: relative;
	z-index: 2;
	border: 1px solid rgba(5, 11, 51, 0.02);
}

.cab-img-wrap {
	border-radius: 18px;
	overflow: hidden;
	height: 190px;
	position: relative;
	background: #f1f5f9;
}

.cab-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cab-tag-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	background-color: var(--color-secondary);
	color: var(--color-white);
	font-family: var(--font-headings) !important;
	font-size: 12px;
	font-weight: 700;
	padding: 4px 12px;
	border-radius: 30px;
	z-index: 3;
	box-shadow: 0 4px 10px rgba(11, 26, 98, 0.2);
}

.cab-tag-badge.badge-popular {
	background: linear-gradient(135deg, #f59e0b, #d97706);
}

.cab-tag-badge.badge-luxury {
	background: linear-gradient(135deg, #7c3aed, #6d28d9);
}

.cab-body {
	padding: 20px 4px 4px 4px;
}

.cab-category {
	font-family: var(--font-body) !important;
	color: var(--color-primary);
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 6px;
	display: block;
}

.cab-title {
	font-family: var(--font-headings) !important;
	font-weight: 700;
	font-size: 22px;
	color: var(--color-secondary);
	line-height: 1.2;
	margin-bottom: 16px;
}

.cab-specs-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	padding-bottom: 16px;
	margin-bottom: 16px;
	border-bottom: 1px dashed rgba(5, 11, 51, 0.1);
}

.cab-spec-item {
	font-family: var(--font-body) !important;
	font-size: 13px;
	color: var(--color-text-dark);
	display: flex;
	align-items: center;
	gap: 8px;
}

.cab-spec-item i {
	color: var(--color-primary);
	font-size: 14px;
	width: 16px;
	text-align: center;
}

.cab-price-info {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.cab-price-lbl {
	font-family: var(--font-body) !important;
	font-size: 12px;
	color: var(--color-text-muted);
	display: block;
}

.cab-price-value {
	font-family: var(--font-headings) !important;
	font-size: 24px;
	font-weight: 800;
	color: var(--color-secondary);
}

.cab-price-sub {
	font-size: 13px;
	font-weight: 500;
	color: var(--color-text-muted);
}

.cab-discount {
	background-color: #dcfce7;
	color: #15803d;
	font-family: var(--font-headings) !important;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 20px;
}

.cab-btn-book {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	background-color: #f1f5f9;
	color: var(--color-secondary);
	font-family: var(--font-headings) !important;
	font-weight: 700;
	font-size: 14px;
	padding: 10px 24px;
	border-radius: 100px;
	border: 1px solid rgba(0, 0, 0, 0.02);
	text-decoration: none !important;
	transition: all 0.3s ease;
	cursor: pointer;
	outline: none;
}

/* Hover States */
.cab-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(5, 11, 51, 0.12);
	border-color: rgba(5, 11, 51, 0.05);
}

.cab-card:hover .cab-img-wrap img {
	transform: scale(1.08);
}

.cab-card:hover .cab-btn-book {
	background: var(--color-primary);
	color: var(--color-white);
	box-shadow: 0 6px 18px rgba(0, 45, 243, 0.25);
	border-color: var(--color-primary);
}

@media (max-width: 991.98px) {
	.tourly-cabs-section {
		padding: 80px 0;
	}

	.cabs-title {
		font-size: 40px;
	}
}

/* ================================================
   Why Choose Us Section Styling
   ================================================ */
.tourly-why-choose-us {
	padding: 100px 0;
	background-color: var(--color-white);
	position: relative;
}

.why-choose-banner {
	background-color: #040935;
	background-image: url('https://tourly-sigma.vercel.app/assets/shape8-MzaXpiWi.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border-radius: 32px;
	padding: 70px 50px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 20px 50px rgba(4, 9, 53, 0.15);
	z-index: 1;
}

.why-choose-banner::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(4, 9, 53, 0.95) 0%, rgba(4, 9, 53, 0.75) 100%);
	z-index: -1;
}

.why-choose-img-large {
	width: 100%;
	height: 380px;
	border-radius: 24px;
	overflow: hidden;
	border: 6px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.why-choose-img-large img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-choose-img-large:hover img {
	transform: scale(1.05);
}

.why-choose-content {
	padding-left: 20px;
}

.why-choose-subtitle {
	font-family: var(--font-script) !important;
	font-size: 28px;
	color: #818cf8;
	/* Light Indigo */
	margin-bottom: 12px;
	display: block;
}

.why-choose-title {
	font-family: var(--font-headings) !important;
	font-weight: 800;
	font-size: 46px;
	line-height: 1.15;
	color: #ffffff;
	margin-bottom: 20px;
}

.why-choose-desc {
	font-family: var(--font-body) !important;
	font-size: 15px;
	color: rgba(255, 255, 255, 0.75);
	line-height: 1.7;
	margin-bottom: 24px;
}

/* Rotating SVG Circle Badge */
.circle-badge-wrapper {
	position: relative;
	width: 125px;
	height: 125px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 10px;
}

.circle-badge-svg {
	width: 100%;
	height: 100%;
	animation: spinCircle 18s linear infinite;
}

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

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

.circle-badge-text {
	font-family: var(--font-headings);
	font-size: 8.5px;
	font-weight: 700;
	fill: #ffffff;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.circle-badge-number {
	position: absolute;
	width: 48px;
	height: 48px;
	background-color: #ffffff;
	color: #040935;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-headings);
	font-size: 22px;
	font-weight: 800;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* Feature List Rows */
.why-features-row {
	margin-top: 50px;
	align-items: center;
}

.why-feature-item {
	display: flex;
	gap: 15px;
	align-items: flex-start;
	margin-bottom: 25px;
}

.why-feature-icon-box {
	width: 52px;
	height: 52px;
	background-color: #ffffff;
	color: var(--color-primary);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	flex-shrink: 0;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-feature-item:hover .why-feature-icon-box {
	transform: translateY(-3px) scale(1.05);
	background-color: var(--color-primary);
	color: #ffffff;
}

.why-feature-info h4 {
	font-family: var(--font-headings);
	font-weight: 700;
	font-size: 18px;
	color: #ffffff;
	margin-bottom: 6px;
}

.why-feature-info p {
	font-family: var(--font-body);
	font-size: 13px;
	color: rgba(255, 255, 255, 0.65);
	line-height: 1.55;
	margin: 0;
}

.why-choose-img-small {
	width: 100%;
	height: 250px;
	border-radius: 24px;
	overflow: hidden;
	border: 6px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.why-choose-img-small img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-choose-img-small:hover img {
	transform: scale(1.05);
}

@media (max-width: 991.98px) {
	.tourly-why-choose-us {
		padding: 80px 0;
	}

	.why-choose-banner {
		padding: 50px 30px;
	}

	.why-choose-img-large {
		height: 300px;
		margin-bottom: 30px;
	}

	.why-choose-content {
		padding-left: 0;
	}

	.why-choose-title {
		font-size: 36px;
	}

	.why-features-row {
		margin-top: 30px;
	}

	.why-choose-img-small {
		height: 220px;
		margin-top: 20px;
	}
}

/* ================================================
   Image Gallery Section Styling (Zig Zag)
   ================================================ */
.tourly-gallery-section {
	padding: 100px 0 120px 0;
	background-color: #f7f9fc;
	position: relative;
	overflow: hidden;
}

.gallery-header {
	text-align: center;
	margin-bottom: 60px;
}

.gallery-subtitle {
	font-family: var(--font-script) !important;
	font-size: 28px;
	color: var(--color-primary);
	margin-bottom: 12px;
	display: block;
}

.gallery-title {
	font-family: var(--font-headings) !important;
	font-weight: 800;
	font-size: 48px;
	color: var(--color-secondary);
	margin-bottom: 0;
}

/* Zig Zag Columns Grid */
.gallery-grid {
	display: flex;
	gap: 30px;
	margin-bottom: 50px;
}

.gallery-col {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

/* Shift middle column to create Zig-Zag effect */
.gallery-col:nth-child(2) {
	margin-top: 50px;
}

.gallery-item {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(5, 11, 51, 0.06);
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	background: #ffffff;
	border: 6px solid #ffffff;
}

.gallery-item img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
	border-radius: 18px;
}

/* Hover overlay */
.gallery-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 45, 243, 0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	border-radius: 18px;
}

.gallery-overlay-icon {
	color: #ffffff;
	font-size: 28px;
	transform: scale(0.6) translateY(20px);
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 45px rgba(0, 45, 243, 0.15);
	border-color: #ffffff;
}

.gallery-item:hover img {
	transform: scale(1.06);
}

.gallery-item:hover .gallery-overlay {
	opacity: 1;
}

.gallery-item:hover .gallery-overlay-icon {
	transform: scale(1) translateY(0);
}

/* Lightbox Styling */
.gallery-lightbox {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(4, 9, 53, 0.95);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s ease, visibility 0.4s ease;
	backdrop-filter: blur(8px);
}

.gallery-lightbox.active {
	opacity: 1;
	visibility: visible;
}

.lightbox-content-wrap {
	position: relative;
	max-width: 85%;
	max-height: 85%;
	transform: scale(0.7);
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-lightbox.active .lightbox-content-wrap {
	transform: scale(1);
}

.lightbox-content-wrap img {
	max-width: 100%;
	max-height: 80vh;
	border-radius: 24px;
	border: 8px solid #ffffff;
	box-shadow: 0 25px 55px rgba(0, 0, 0, 0.5);
	object-fit: contain;
}

.lightbox-close {
	position: absolute;
	top: -45px;
	right: -45px;
	background: #ffffff;
	color: #040935;
	border: none;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
}

.lightbox-close:hover {
	transform: scale(1.1) rotate(90deg);
	background: var(--color-primary);
	color: #ffffff;
}

@media (max-width: 991.98px) {
	.tourly-gallery-section {
		padding: 80px 0;
	}

	.gallery-title {
		font-size: 40px;
	}

	.gallery-grid {
		flex-direction: column;
		gap: 20px;
	}

	.gallery-col:nth-child(2) {
		margin-top: 0;
	}

	.lightbox-close {
		top: 15px;
		right: 15px;
	}
}

/* ================================================
   CTA Section with Form & Splatter Curves
   ================================================ */
.tourly-cta-section {
	position: relative;
	padding: 160px 0;
	background-image: url('https://tourly-sigma.vercel.app/assets/168-CLAQXMIu.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	color: #ffffff;
	z-index: 1;
	overflow: hidden;
}

.tourly-cta-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(4, 9, 53, 0.72);
	z-index: -1;
}

.cta-curve-top {
	position: absolute;
	top: -2px;
	left: 0;
	width: 100%;
	height: 80px;
	background-image: url('https://tourly-sigma.vercel.app/assets/03-Dbk7lFaz.png');
	background-size: 100% 100%;
	background-repeat: no-repeat;
	z-index: 2;
}

.cta-curve-bottom {
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 80px;
	background-image: url('https://tourly-sigma.vercel.app/assets/04-CWLcDCYp.png');
	background-size: 100% 100%;
	background-repeat: no-repeat;
	z-index: 2;
}

.cta-content-wrap {
	padding-right: 30px;
}

.cta-subtitle {
	font-family: var(--font-script) !important;
	font-size: 28px;
	color: #818cf8;
	margin-bottom: 12px;
	display: block;
}

.cta-title {
	font-family: var(--font-headings) !important;
	font-weight: 800;
	font-size: 46px;
	color: #ffffff;
	line-height: 1.2;
	margin-bottom: 24px;
}

.cta-desc {
	font-family: var(--font-body) !important;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.75;
	margin-bottom: 30px;
}

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

.cta-feature-item {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 18px;
}

.cta-feature-icon {
	color: #818cf8;
	font-size: 20px;
	width: 25px;
	display: flex;
	justify-content: center;
}

.cta-feature-text {
	font-family: var(--font-body) !important;
	font-size: 15px;
	color: #ffffff;
	font-weight: 600;
}

/* Frosted Glass Form Card */
.cta-form-card {
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 28px;
	padding: 40px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.cta-form-title {
	font-family: var(--font-headings) !important;
	font-size: 28px;
	font-weight: 800;
	text-align: center;
	color: #ffffff;
	margin-bottom: 30px;
}

.cta-input-group {
	margin-bottom: 20px;
}

.cta-input {
	width: 100%;
	padding: 12px 20px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 12px;
	color: #ffffff;
	font-family: var(--font-body) !important;
	font-size: 14px;
	transition: all 0.3s ease;
}

.cta-input:focus {
	background: rgba(255, 255, 255, 0.15);
	border-color: #818cf8;
	outline: none;
	box-shadow: 0 0 12px rgba(129, 140, 248, 0.35);
}

.cta-input::placeholder {
	color: rgba(255, 255, 255, 0.55);
}

select.cta-input {
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
	background-repeat: no-repeat;
	background-position: calc(100% - 15px) center;
}

select.cta-input option {
	background: #040935;
	color: #ffffff;
}

.cta-btn-submit {
	width: 100%;
	padding: 14px;
	background: var(--color-primary);
	border: none;
	border-radius: 12px;
	color: #ffffff;
	font-family: var(--font-headings) !important;
	font-weight: 700;
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	box-shadow: 0 4px 15px rgba(0, 45, 243, 0.3);
}

.cta-btn-submit:hover {
	background: #0022cc;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 45, 243, 0.45);
}

@media (max-width: 991.98px) {
	.tourly-cta-section {
		padding: 100px 0;
	}

	.cta-curve-top {
		height: 45px;
	}

	.cta-curve-bottom {
		height: 45px;
	}

	.cta-content-wrap {
		padding-right: 0;
		margin-bottom: 40px;
	}

	.cta-title {
		font-size: 36px;
	}

	.cta-form-card {
		padding: 30px 20px;
	}
}

/* ================================================
   Testimonials Section Styling
   ================================================ */
.tourly-testimonials-section {
	padding: 100px 0;
	background-color: #ffffff;
	position: relative;
	overflow: hidden;
}

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

.testimonials-subtitle {
	font-family: var(--font-script) !important;
	font-size: 28px;
	color: var(--color-primary);
	margin-bottom: 12px;
	display: block;
}

.testimonials-title {
	font-family: var(--font-headings) !important;
	font-weight: 800;
	font-size: 48px;
	color: var(--color-secondary);
	margin-bottom: 0;
}

.testimonials-slider {
	padding: 20px 10px 70px 10px !important;
}

.testimonial-card {
	background: #f3f6fa;
	border-radius: 24px;
	padding: 40px;
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	box-shadow: 0 10px 30px rgba(5, 11, 51, 0.03);
	border: 1px solid transparent;
}

.testimonial-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 45px rgba(0, 45, 243, 0.08);
	background: #ffffff;
	border-color: #e2e8f0;
}

.testimonial-stars {
	color: #f59e0b;
	font-size: 14px;
	margin-bottom: 24px;
}

.testimonial-text {
	font-family: var(--font-body) !important;
	font-size: 15px;
	color: var(--color-secondary);
	line-height: 1.8;
	margin-bottom: 30px;
}

.testimonial-footer {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.testimonial-name {
	font-family: var(--font-headings) !important;
	font-weight: 700;
	font-size: 18px;
	color: var(--color-secondary);
	margin-bottom: 4px;
}

.testimonial-designation {
	font-family: var(--font-body) !important;
	font-size: 13px;
	color: #64748b;
	display: block;
}

.testimonial-quote-icon {
	font-size: 44px;
	color: var(--color-primary);
	opacity: 0.95;
	line-height: 1;
}

/* Pagination Dots */
.testimonials-slider .swiper-pagination {
	bottom: 10px !important;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 6px;
}

.testimonials-slider .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: transparent !important;
	border: 2px solid var(--color-primary);
	opacity: 0.6;
	transition: all 0.3s ease;
	margin: 0 !important;
}

.testimonials-slider .swiper-pagination-bullet-active {
	width: 26px;
	border-radius: 5px;
	background: var(--color-primary) !important;
	border-color: var(--color-primary);
	opacity: 1;
}

@media (max-width: 991.98px) {
	.tourly-testimonials-section {
		padding: 80px 0;
	}

	.testimonials-title {
		font-size: 40px;
	}

	.testimonial-card {
		padding: 30px;
	}
}

/* ================================================
   FAQ Section Styling
   ================================================ */
.tourly-faq-section {
	padding: 100px 0;
	background-color: #f7f9fc;
	position: relative;
	overflow: hidden;
}

.faq-subtitle {
	font-family: var(--font-script) !important;
	font-size: 28px;
	color: var(--color-primary);
	margin-bottom: 12px;
	display: block;
}

.faq-title {
	font-family: var(--font-headings) !important;
	font-weight: 800;
	font-size: 46px;
	color: var(--color-secondary);
	margin-bottom: 35px;
}

.faq-accordion-item {
	background: #ffffff;
	border: 1.5px solid #e2e8f0;
	border-radius: 18px !important;
	margin-bottom: 18px;
	overflow: hidden;
	transition: all 0.35s ease;
}

.faq-accordion-item:hover {
	border-color: rgba(0, 45, 243, 0.3);
}

.faq-accordion-item.active-item {
	border-color: var(--color-primary);
	box-shadow: 0 12px 35px rgba(0, 45, 243, 0.05);
}

.faq-btn {
	width: 100%;
	padding: 22px 28px;
	background: none;
	border: none;
	text-align: left;
	font-family: var(--font-headings) !important;
	font-weight: 700;
	font-size: 16px;
	color: var(--color-secondary);
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	outline: none;
}

.faq-icon-box {
	width: 32px;
	height: 32px;
	background: #f1f5f9;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	color: var(--color-secondary);
	transition: all 0.3s ease;
	flex-shrink: 0;
	margin-left: 15px;
}

.faq-accordion-item.active-item .faq-icon-box {
	background: var(--color-primary);
	color: #ffffff;
	transform: rotate(180deg);
}

.faq-collapse {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content {
	padding: 0 28px 24px 28px;
	font-family: var(--font-body) !important;
	font-size: 14.5px;
	color: #64748b;
	line-height: 1.7;
}

/* FAQ Image with Floating Animation */
.faq-img-wrap {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}

.faq-shape-bg {
	position: absolute;
	width: 85%;
	height: 85%;
	background: radial-gradient(circle, rgba(0, 45, 243, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
	z-index: -1;
	border-radius: 50%;
}

.faq-main-img {
	width: 85%;
	height: auto;
	border-radius: 28px;
	box-shadow: 0 20px 45px rgba(5, 11, 51, 0.08);
	border: 6px solid #ffffff;
	animation: faqFloat 6s ease-in-out infinite;
}

@keyframes faqFloat {

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

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

@media (max-width: 991.98px) {
	.tourly-faq-section {
		padding: 80px 0;
	}

	.faq-title {
		font-size: 38px;
		margin-bottom: 25px;
	}

	.faq-btn {
		padding: 18px 20px;
		font-size: 15px;
	}

	.faq-content {
		padding: 0 20px 20px 20px;
	}

	.faq-img-wrap {
		margin-top: 40px;
	}

	.faq-main-img {
		width: 100%;
	}
}

/* ================================================
   Blog Section Styling
   ================================================ */
.tourly-blog-section {
	padding: 100px 0;
	background-color: #ffffff;
	position: relative;
}

.blog-subtitle {
	font-family: var(--font-script) !important;
	font-size: 28px;
	color: var(--color-primary);
	margin-bottom: 12px;
	display: block;
}

.blog-title {
	font-family: var(--font-headings) !important;
	font-weight: 800;
	font-size: 46px;
	color: var(--color-secondary);
	margin-bottom: 50px;
}

.blog-card {
	background: #ffffff;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(5, 11, 51, 0.04);
	border: 1px solid #f1f5f9;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	margin-bottom: 30px;
}

.blog-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 45px rgba(0, 45, 243, 0.08);
	border-color: rgba(0, 45, 243, 0.1);
}

.blog-img-wrap {
	position: relative;
	overflow: hidden;
	height: 240px;
}

.blog-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.blog-badge {
	position: absolute;
	top: 20px;
	left: 20px;
	background: var(--color-primary);
	color: #ffffff;
	padding: 6px 14px;
	border-radius: 30px;
	font-size: 12px;
	font-weight: 700;
	z-index: 2;
}

.blog-card-body {
	padding: 28px;
}

.blog-meta {
	font-size: 13.5px;
	color: #64748b;
	margin-bottom: 14px;
	display: flex;
	gap: 15px;
}

.blog-meta span i {
	color: var(--color-primary);
	margin-right: 6px;
}

.blog-card-title {
	font-family: var(--font-headings) !important;
	font-weight: 700;
	font-size: 20px;
	color: var(--color-secondary);
	line-height: 1.4;
	margin-bottom: 14px;
	transition: color 0.3s ease;
}

.blog-card-title a {
	color: inherit;
	text-decoration: none;
}

.blog-card-title a:hover {
	color: var(--color-primary);
}

.blog-text {
	font-size: 14.5px;
	color: #64748b;
	line-height: 1.7;
	margin-bottom: 20px;
}

.blog-read-more {
	font-weight: 700;
	font-size: 14px;
	color: var(--color-primary);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: gap 0.3s ease;
}

.blog-read-more:hover {
	gap: 10px;
	color: var(--color-secondary);
}

.blog-btn-wrap {
	margin-top: 40px;
}

.blog-btn-view-all {
	padding: 16px 36px;
	background: var(--color-primary);
	color: #ffffff;
	border-radius: 35px;
	font-weight: 700;
	font-size: 15.5px;
	border: none;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	box-shadow: 0 6px 18px rgba(0, 45, 243, 0.2);
	text-decoration: none;
	display: inline-block;
}

.blog-btn-view-all:hover {
	background: #0022cc;
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(0, 45, 243, 0.35);
	color: #ffffff;
}

@media (max-width: 991.98px) {
	.tourly-blog-section {
		padding: 80px 0;
	}

	.blog-title {
		font-size: 38px;
		margin-bottom: 35px;
	}

	.blog-card-body {
		padding: 22px;
	}

	.blog-card-title {
		font-size: 18px;
	}
}

/* ================================================
   Footer Section Styling
   ================================================ */
.tourly-footer {
	background-color: #040935;
	padding: 110px 0 35px 0;
	color: rgba(255, 255, 255, 0.7);
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.footer-wave-wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	line-height: 0;
	transform: translateY(-1px);
	z-index: 2;
}

.footer-wave-wrap svg {
	position: relative;
	display: block;
	width: 100%;
	height: 40px;
}

.tourly-footer .tourly-logo {
	color: #ffffff !important;
	font-size: 26px;
	font-weight: 800;
	text-decoration: none;
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	font-family: var(--font-headings) !important;
}

.footer-about-text {
	font-family: var(--font-body) !important;
	font-size: 14.5px;
	line-height: 1.7;
	margin-bottom: 25px;
	color: rgba(255, 255, 255, 0.65);
}

.footer-social-icons {
	display: flex;
	gap: 12px;
}

.footer-social-link {
	width: 42px;
	height: 42px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-size: 14px;
	transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	text-decoration: none;
}

.footer-social-link:hover {
	background: var(--color-primary);
	border-color: var(--color-primary);
	color: #ffffff;
	transform: translateY(-5px) scale(1.08);
}

.footer-col-title {
	font-family: var(--font-headings) !important;
	font-weight: 700;
	font-size: 20px;
	color: #ffffff;
	margin-bottom: 25px;
	position: relative;
	padding-bottom: 12px;
}

.footer-col-title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 35px;
	height: 3px;
	background-color: var(--color-primary);
	border-radius: 2px;
}

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

.footer-links-list li {
	margin-bottom: 12px;
}

.footer-link {
	color: rgba(255, 255, 255, 0.65);
	text-decoration: none;
	font-size: 14.5px;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
}

.footer-link i {
	font-size: 11px;
	opacity: 0;
	width: 0;
	transition: all 0.3s ease;
	color: var(--color-primary);
}

.footer-link:hover {
	color: #ffffff;
	padding-left: 6px;
}

.footer-link:hover i {
	opacity: 1;
	width: 15px;
}

.footer-contact-item {
	display: flex;
	gap: 15px;
	margin-bottom: 20px;
	font-size: 14.5px;
}

.footer-contact-item i {
	color: var(--color-primary);
	font-size: 16px;
	margin-top: 4px;
}

.footer-contact-item div p {
	margin-bottom: 4px;
	color: rgba(255, 255, 255, 0.65);
}

.footer-contact-item div p a {
	color: inherit;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-contact-item div p a:hover {
	color: #ffffff;
}

.footer-newsletter-text {
	font-family: var(--font-body) !important;
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 20px;
	color: rgba(255, 255, 255, 0.65);
}

.footer-newsletter-form {
	position: relative;
	display: flex;
}

.footer-newsletter-input {
	width: 100%;
	padding: 14px 55px 14px 20px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 30px;
	color: #ffffff;
	font-size: 14px;
	outline: none;
	transition: all 0.3s ease;
}

.footer-newsletter-input::placeholder {
	color: rgba(255, 255, 255, 0.3);
}

.footer-newsletter-input:focus {
	border-color: var(--color-primary);
	background: rgba(255, 255, 255, 0.08);
}

.footer-newsletter-submit {
	position: absolute;
	right: 5px;
	top: 5px;
	bottom: 5px;
	width: 40px;
	height: 40px;
	background: var(--color-primary);
	border: none;
	border-radius: 50%;
	color: #ffffff;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	cursor: pointer;
}

.footer-newsletter-submit:hover {
	background: #0022cc;
	transform: scale(1.05);
}

.footer-bottom-bar {
	margin-top: 70px;
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	font-size: 14px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.footer-bottom-links {
	display: flex;
	gap: 20px;
}

.footer-bottom-links a {
	color: rgba(255, 255, 255, 0.5);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
	color: #ffffff;
}

@media (max-width: 991.98px) {
	.tourly-footer {
		padding: 80px 0 30px 0;
	}

	.footer-bottom-bar {
		margin-top: 50px;
		flex-direction: column;
		text-align: center;
	}
}

/* --- Added by User Request (Modern Hover Dropdowns) --- */
@media (min-width: 992px) {
	.navbar .dropdown:hover .dropdown-menu {
		display: block;
		opacity: 1;
		visibility: visible;
		margin-top: 0;
	}

	.navbar .dropdown-menu {
		display: block;
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease;
		margin-top: 15px;
	}
}

.navbar .dropdown-menu {
	border-radius: 16px;
	padding: 12px 0;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1) !important;
	border: 1px solid rgba(0, 0, 0, 0.05) !important;
	min-width: 220px;
}

.navbar .dropdown-item {
	padding: 10px 24px;
	font-weight: 500;
	font-size: 15px;
	color: #1e293b;
	transition: all 0.3s ease;
	position: relative;
}

.navbar .dropdown-item:hover {
	background-color: transparent;
	color: #002df3;
	padding-left: 32px;
}

.navbar .dropdown-item::before {
	content: "\f105";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	position: absolute;
	left: 15px;
	opacity: 0;
	color: #002df3;
	transition: all 0.3s ease;
	transform: translateX(-10px);
}

.navbar .dropdown-item:hover::before {
	opacity: 1;
	transform: translateX(0);
}

/* --- Added by User Request (Ticket Card Design) --- */
.ticket-card {
	background: #fff;
	border-radius: 20px;
	position: relative;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, 0.05);
	display: flex;
	flex-direction: column;
}

.ticket-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 35px rgba(0, 45, 243, 0.12);
	border-color: rgba(0, 45, 243, 0.2);
}

.ticket-top {
	padding: 30px 20px 25px;
	position: relative;
	flex-grow: 1;
}

.ticket-divider {
	position: relative;
	border-top: 2px dashed #cbd5e1;
	margin: 0 15px;
}

.ticket-divider::before,
.ticket-divider::after {
	content: '';
	position: absolute;
	top: -15px;
	width: 30px;
	height: 30px;
	background: #f8f9fa;
	border-radius: 50%;
	z-index: 2;
}

.ticket-divider::before {
	left: -30px;
	box-shadow: inset -1px 0 0 rgba(0, 0, 0, 0.03);
}

.ticket-divider::after {
	right: -30px;
	box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.03);
}

.ticket-bottom {
	padding: 20px;
	background: linear-gradient(135deg, rgba(0, 45, 243, 0.03) 0%, rgba(0, 27, 150, 0.03) 100%);
}

.flight-route-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}

.flight-path-line {
	flex-grow: 1;
	height: 2px;
	background-image: linear-gradient(90deg, #cbd5e1 50%, transparent 0%);
	background-position: bottom;
	background-size: 8px 2px;
	background-repeat: repeat-x;
	margin: 0 15px;
	position: relative;
}

.flight-path-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #002df3;
	background: #fff;
	padding: 0 8px;
	transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
	font-size: 20px;
}

.ticket-card:hover .flight-path-icon {
	transform: translate(25px, -50%);
	color: #ffc107;
}

.city-code {
	font-size: 32px;
	font-weight: 800;
	color: #050b33;
	margin-bottom: 2px;
	line-height: 1;
	font-family: var(--font-headings);
}

.city-name {
	font-size: 14px;
	color: #64748b;
	font-weight: 600;
}

.ticket-bottom-label {
	font-size: 11px;
	text-transform: uppercase;
	font-weight: 700;
}

.ticket-btn {
	font-size: 13px;
}

/* --- Added by User Request (Destinations Page) --- */
.destinations-hero {
	height: 500px;
	background: url('https://images.unsplash.com/photo-1524492412937-b28074a5d7da?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}

.destinations-hero .hero-overlay {
	background: rgba(0, 45, 243, 0.6);
}

.destinations-hero-subtitle {
	color: #ffc107;
	font-size: 28px;
}

.destinations-hero-desc {
	max-width: 700px;
	font-weight: 300;
}

.top-states-desc {
	max-width: 600px;
}

.state-dest-card {
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	border: 1px solid transparent;
}

.state-dest-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 45, 243, 0.12) !important;
	border-color: rgba(0, 45, 243, 0.2);
}

.state-img-wrapper {
	height: 250px;
}

.state-img-wrapper img {
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.state-dest-card:hover .state-img-wrapper img {
	transform: scale(1.1);
}

.state-badge {
	font-size: 12px;
	z-index: 2;
}

.state-title {
	color: #002df3;
}

.state-btn {
	transition: all 0.3s ease;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.state-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0%;
	height: 100%;
	background-color: #002df3;
	transition: all 0.4s ease;
	z-index: -1;
	border-radius: 50px;
}

.state-dest-card:hover .state-btn {
	color: white !important;
	border-color: #002df3 !important;
}

.state-dest-card:hover .state-btn::before {
	width: 100%;
}

/* ================================================
   PACKAGES PAGE
   ================================================ */

/* --- Hero --- */
.pkg-hero {
	position: relative;
	min-height: 480px;
	display: flex;
	align-items: center;
	background: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}

.pkg-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(0, 45, 243, 0.82) 0%, rgba(5, 11, 51, 0.75) 100%);
}

.pkg-hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	color: #fff;
	padding-top: 80px;
	padding-bottom: 60px;
}

.pkg-hero-sub {
	display: block;
	color: #ffc107;
	font-size: 26px;
	margin-bottom: 10px;
}

.pkg-hero-title {
	font-family: var(--font-headings);
	font-size: 52px;
	font-weight: 800;
	margin-bottom: 16px;
	line-height: 1.15;
}

.pkg-hero-desc {
	font-size: 17px;
	color: rgba(255, 255, 255, 0.85);
	max-width: 650px;
	margin: 0 auto 36px;
	line-height: 1.7;
}

/* --- Search Box --- */
.pkg-search-wrap {
	max-width: 700px;
	margin: 0 auto;
}

.pkg-search-box {
	display: flex;
	align-items: center;
	background: #fff;
	border-radius: 50px;
	padding: 8px 8px 8px 24px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.pkg-search-icon {
	color: #002df3;
	font-size: 17px;
	flex-shrink: 0;
}

.pkg-search-input {
	border: none;
	outline: none;
	flex-grow: 1;
	padding: 6px 14px;
	font-size: 15px;
	color: #1e293b;
	background: transparent;
	font-family: var(--font-body);
}

.pkg-search-input::placeholder {
	color: #94a3b8;
}

.pkg-search-btn {
	background: #002df3;
	color: #fff;
	border: none;
	border-radius: 40px;
	padding: 12px 30px;
	font-weight: 700;
	font-size: 14px;
	cursor: pointer;
	transition: background 0.3s ease;
	font-family: var(--font-headings);
	letter-spacing: 0.3px;
}

.pkg-search-btn:hover {
	background: #050b33;
}

/* --- Main Section --- */
.pkg-main-section {
	padding: 70px 0 100px;
	background: #f7f9fc;
}

/* --- Filter Card --- */
.pkg-filter-card {
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
	border: 1px solid rgba(0, 0, 0, 0.04);
	position: sticky;
	top: 100px;
}

.pkg-filter-header {
	background: #002df3;
	color: #fff;
	padding: 18px 22px;
	font-family: var(--font-headings);
	font-weight: 700;
	font-size: 16px;
	letter-spacing: 0.3px;
}

.pkg-filter-group {
	padding: 20px 22px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.pkg-filter-group:last-of-type {
	border-bottom: none;
}

.pkg-filter-title {
	font-family: var(--font-headings);
	font-weight: 700;
	color: #050b33;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	margin-bottom: 14px;
}

.pkg-check-label {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 12px;
	border-radius: 10px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 500;
	color: #475569;
	transition: all 0.25s ease;
	margin-bottom: 4px;
	font-family: var(--font-body);
}

.pkg-check-label input {
	accent-color: #002df3;
	width: 16px;
	height: 16px;
	cursor: pointer;
}

.pkg-check-label:hover {
	background: rgba(0, 45, 243, 0.06);
	color: #002df3;
}

.pkg-check-label.active {
	background: rgba(0, 45, 243, 0.08);
	color: #002df3;
	font-weight: 700;
}

.pkg-reset-btn {
	display: block;
	width: calc(100% - 44px);
	margin: 18px 22px 22px;
	background: transparent;
	border: 2px solid #002df3;
	color: #002df3;
	border-radius: 40px;
	padding: 10px 20px;
	font-weight: 700;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: var(--font-headings);
}

.pkg-reset-btn:hover {
	background: #002df3;
	color: #fff;
}

/* --- Results Bar --- */
.pkg-results-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 28px;
	flex-wrap: wrap;
	gap: 12px;
}

.pkg-results-bar span {
	font-size: 15px;
	color: #475569;
	font-family: var(--font-body);
}

.pkg-results-bar strong {
	color: #002df3;
}

.pkg-sort-wrap {
	display: flex;
	align-items: center;
}

.pkg-sort-select {
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	padding: 8px 14px;
	font-size: 14px;
	color: #1e293b;
	background: #fff;
	outline: none;
	cursor: pointer;
	font-family: var(--font-body);
	transition: border-color 0.2s ease;
}

.pkg-sort-select:focus {
	border-color: #002df3;
}

/* --- Package Cards --- */
.pkg-card {
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
	border: 1px solid rgba(0, 0, 0, 0.04);
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	height: 100%;
	display: flex;
	flex-direction: column;
}

.pkg-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 45px rgba(0, 45, 243, 0.13);
	border-color: rgba(0, 45, 243, 0.18);
}

.pkg-card-img-wrap {
	position: relative;
	height: 220px;
	overflow: hidden;
}

.pkg-card-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.pkg-card:hover .pkg-card-img-wrap img {
	transform: scale(1.08);
}

.pkg-badge {
	position: absolute;
	top: 14px;
	left: 14px;
	padding: 5px 13px;
	border-radius: 30px;
	font-size: 11px;
	font-weight: 700;
	font-family: var(--font-headings);
	letter-spacing: 0.3px;
	z-index: 2;
}

.badge-popular {
	background: #002df3;
	color: #fff;
}

.badge-adventure {
	background: #f97316;
	color: #fff;
}

.badge-honeymoon {
	background: #ec4899;
	color: #fff;
}

.badge-intl {
	background: #7c3aed;
	color: #fff;
}

.pkg-duration-tag {
	position: absolute;
	bottom: 14px;
	right: 14px;
	background: rgba(0, 0, 0, 0.55);
	color: #fff;
	padding: 5px 12px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	backdrop-filter: blur(4px);
	z-index: 2;
	font-family: var(--font-body);
}

.pkg-card-body {
	padding: 20px 22px 22px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.pkg-category-tag {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	color: #002df3;
	margin-bottom: 8px;
	font-family: var(--font-body);
}

.pkg-card-title {
	font-family: var(--font-headings);
	font-size: 19px;
	font-weight: 700;
	color: #050b33;
	margin-bottom: 12px;
	line-height: 1.3;
}

.pkg-highlights {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 18px;
	flex-grow: 1;
}

.pkg-highlights span {
	font-size: 13px;
	color: #64748b;
	font-family: var(--font-body);
	display: flex;
	align-items: center;
	gap: 8px;
}

.pkg-highlights span i {
	color: #002df3;
	font-size: 12px;
	width: 14px;
	flex-shrink: 0;
}

.pkg-card-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 16px;
	border-top: 1px solid #f1f5f9;
	margin-top: auto;
}

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

.pkg-price small {
	font-size: 10px;
	text-transform: uppercase;
	color: #94a3b8;
	font-weight: 700;
	letter-spacing: 0.5px;
	margin-bottom: 2px;
}

.pkg-price strong {
	font-family: var(--font-headings);
	font-size: 20px;
	font-weight: 800;
	color: #002df3;
	line-height: 1;
}

.pkg-price strong span {
	font-size: 12px;
	font-weight: 500;
	color: #94a3b8;
}

.pkg-book-btn {
	background: #002df3;
	color: #fff;
	border: none;
	border-radius: 30px;
	padding: 10px 20px;
	font-weight: 700;
	font-size: 13px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: var(--font-headings);
	white-space: nowrap;
}

.pkg-book-btn:hover {
	background: #050b33;
	transform: scale(1.05);
}

/* --- No Results --- */
.pkg-no-results {
	text-align: center;
	padding: 80px 20px;
	color: #94a3b8;
}

.pkg-no-results i {
	font-size: 50px;
	margin-bottom: 16px;
	display: block;
	color: #cbd5e1;
}

.pkg-no-results h4 {
	font-family: var(--font-headings);
	color: #475569;
	margin-bottom: 8px;
}

.pkg-no-results p {
	font-size: 15px;
	font-family: var(--font-body);
}

/* --- Responsive --- */
@media (max-width: 991.98px) {
	.pkg-hero-title {
		font-size: 36px;
	}

	.pkg-filter-card {
		position: static;
		margin-bottom: 30px;
	}
}

@media (max-width: 575.98px) {
	.pkg-hero-title {
		font-size: 28px;
	}

	.pkg-search-box {
		flex-wrap: wrap;
		border-radius: 18px;
		padding: 12px;
		gap: 10px;
	}

	.pkg-search-btn {
		width: 100%;
		border-radius: 12px;
	}
}

/* ================================================
   PACKAGE DETAILS PAGE
   ================================================ */

/* --- Hero --- */
.pkd-hero {
	position: relative;
	min-height: 500px;
	display: flex;
	align-items: flex-end;
	background: url('https://images.unsplash.com/photo-1626714485860-29c66cc9cb32?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}

.pkd-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(5, 11, 51, 0.92) 0%, rgba(5, 11, 51, 0.3) 60%, transparent 100%);
}

.pkd-hero-inner {
	position: relative;
	z-index: 2;
	color: #fff;
	padding-bottom: 50px;
	padding-top: 120px;
}

.pkd-hero-meta {
	display: flex;
	gap: 10px;
	margin-bottom: 14px;
	flex-wrap: wrap;
}

.pkd-tag {
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.25);
	backdrop-filter: blur(6px);
	padding: 5px 16px;
	border-radius: 30px;
	font-size: 13px;
	font-weight: 600;
	font-family: var(--font-body);
}

.pkd-tag-hot {
	background: #ffc107;
	color: #050b33;
	border-color: #ffc107;
}

.pkd-hero-title {
	font-family: var(--font-headings);
	font-size: 46px;
	font-weight: 800;
	margin-bottom: 20px;
	line-height: 1.15;
}

.pkd-hero-stats {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
}

.pkd-stat {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-family: var(--font-body);
	color: rgba(255, 255, 255, 0.85);
}

.pkd-stat i {
	color: #ffc107;
	font-size: 15px;
}

/* --- Breadcrumb --- */
.pkd-breadcrumb {
	background: #fff;
	border-bottom: 1px solid #e2e8f0;
	padding: 12px 0;
}

.pkd-breadcrumb .breadcrumb-item a {
	color: #002df3;
	text-decoration: none;
	font-size: 14px;
}

.pkd-breadcrumb .breadcrumb-item.active {
	color: #475569;
	font-size: 14px;
}

/* --- Main Layout --- */
.pkd-main {
	background: #f7f9fc;
}

/* --- Gallery --- */
.pkd-gallery-wrap {
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.pkd-gallery-main {
	height: 420px;
	overflow: hidden;
}

.pkd-gallery-main img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.pkd-gallery-thumbs {
	display: flex;
	gap: 6px;
	padding: 10px;
	background: #f8fafc;
}

.pkd-thumb {
	width: 25%;
	height: 80px;
	border-radius: 10px;
	overflow: hidden;
	cursor: pointer;
	border: 3px solid transparent;
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.pkd-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pkd-thumb.active,
.pkd-thumb:hover {
	border-color: #002df3;
}

/* --- Quick Info --- */
.pkd-quick-info {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

.pkd-info-card {
	background: #fff;
	border-radius: 14px;
	padding: 16px;
	display: flex;
	align-items: center;
	gap: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	border: 1px solid rgba(0, 0, 0, 0.04);
	transition: transform 0.3s ease;
}

.pkd-info-card:hover {
	transform: translateY(-3px);
}

.pkd-info-icon {
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: rgba(0, 45, 243, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #002df3;
	font-size: 18px;
	flex-shrink: 0;
}

.pkd-info-card div small {
	display: block;
	font-size: 11px;
	text-transform: uppercase;
	color: #94a3b8;
	font-weight: 700;
	letter-spacing: 0.5px;
	margin-bottom: 2px;
	font-family: var(--font-body);
}

.pkd-info-card div strong {
	font-family: var(--font-headings);
	font-size: 14px;
	font-weight: 700;
	color: #050b33;
}

/* --- Section Cards --- */
.pkd-section-card {
	background: #fff;
	border-radius: 20px;
	padding: 30px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
	border: 1px solid rgba(0, 0, 0, 0.04);
}

.pkd-section-title {
	font-family: var(--font-headings);
	font-size: 22px;
	font-weight: 700;
	color: #050b33;
	margin-bottom: 20px;
	padding-bottom: 14px;
	border-bottom: 2px solid #f1f5f9;
}

.pkd-section-title i {
	color: #002df3;
}

.pkd-section-card p {
	font-family: var(--font-body);
	color: #475569;
	line-height: 1.8;
	font-size: 15px;
}

/* --- Highlights Grid --- */
.pkd-highlights-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}

.pkd-highlight-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	font-weight: 600;
	color: #1e293b;
	font-family: var(--font-body);
	padding: 10px 14px;
	border-radius: 10px;
	background: #f0f4ff;
}

.pkd-highlight-item i {
	color: #002df3;
	font-size: 15px;
	flex-shrink: 0;
}

/* --- Itinerary --- */
.pkd-itinerary {
	position: relative;
}

.pkd-itinerary::before {
	content: '';
	position: absolute;
	left: 50px;
	top: 0;
	bottom: 0;
	width: 2px;
	background: linear-gradient(to bottom, #002df3, #7c3aed, #002df3);
	opacity: 0.2;
}

.pkd-day-item {
	display: flex;
	gap: 20px;
	margin-bottom: 30px;
	position: relative;
}

.pkd-day-item:last-child {
	margin-bottom: 0;
}

.pkd-day-marker {
	flex-shrink: 0;
	width: 80px;
	display: flex;
	align-items: flex-start;
	padding-top: 4px;
}

.pkd-day-marker span {
	background: #002df3;
	color: #fff;
	font-family: var(--font-headings);
	font-weight: 700;
	font-size: 12px;
	padding: 5px 10px;
	border-radius: 20px;
	letter-spacing: 0.3px;
	white-space: nowrap;
	z-index: 2;
	position: relative;
}

.pkd-day-last span {
	background: #ffc107;
	color: #050b33;
}

.pkd-day-content {
	flex-grow: 1;
	background: #f8fafc;
	border-radius: 16px;
	padding: 20px;
	border: 1px solid #e2e8f0;
	transition: all 0.3s ease;
}

.pkd-day-content:hover {
	border-color: rgba(0, 45, 243, 0.2);
	box-shadow: 0 4px 15px rgba(0, 45, 243, 0.07);
}

.pkd-day-content h4 {
	font-family: var(--font-headings);
	font-weight: 700;
	font-size: 17px;
	color: #050b33;
	margin-bottom: 8px;
}

.pkd-day-content p {
	font-size: 14px;
	color: #475569;
	line-height: 1.7;
	margin-bottom: 12px;
	font-family: var(--font-body);
}

.pkd-day-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.pkd-day-tags span {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 20px;
	padding: 4px 12px;
	font-size: 12px;
	color: #475569;
	font-weight: 600;
	font-family: var(--font-body);
	display: flex;
	align-items: center;
	gap: 6px;
}

.pkd-day-tags span i {
	color: #002df3;
}

/* --- Inclusions & Exclusions --- */
.pkd-inc-box {
	border-radius: 16px;
	padding: 22px;
	height: 100%;
}

.pkd-inc {
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
}

.pkd-exc {
	background: #fff1f2;
	border: 1px solid #fecdd3;
}

.pkd-inc-title {
	font-family: var(--font-headings);
	font-weight: 700;
	font-size: 15px;
	margin-bottom: 16px;
}

.pkd-inc .pkd-inc-title {
	color: #16a34a;
}

.pkd-exc .pkd-inc-title {
	color: #dc2626;
}

.pkd-inc-box ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.pkd-inc-box ul li {
	font-size: 14px;
	color: #374151;
	padding: 6px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	font-family: var(--font-body);
	line-height: 1.5;
}

.pkd-inc-box ul li:last-child {
	border-bottom: none;
}

.pkd-inc ul li::before {
	content: "✓ ";
	color: #16a34a;
	font-weight: 700;
}

.pkd-exc ul li::before {
	content: "✕ ";
	color: #dc2626;
	font-weight: 700;
}

/* --- Things to Carry --- */
.pkd-carry-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}

.pkd-carry-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	text-align: center;
	padding: 18px 12px;
	background: #f0f4ff;
	border-radius: 14px;
	font-size: 13px;
	font-weight: 600;
	color: #1e293b;
	font-family: var(--font-body);
	border: 1px solid transparent;
	transition: all 0.3s ease;
}

.pkd-carry-item:hover {
	border-color: #002df3;
	background: #e8eeff;
}

.pkd-carry-item i {
	font-size: 22px;
	color: #002df3;
}

/* --- FAQ --- */
.pkd-faq {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.pkd-faq-item {
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	overflow: hidden;
}

.pkd-faq-btn {
	width: 100%;
	background: #f8fafc;
	border: none;
	padding: 16px 20px;
	font-family: var(--font-headings);
	font-size: 15px;
	font-weight: 700;
	color: #050b33;
	text-align: left;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	transition: background 0.2s ease;
}

.pkd-faq-btn:not(.collapsed) {
	background: #002df3;
	color: #fff;
}

.pkd-faq-btn:not(.collapsed) .pkd-faq-icon {
	transform: rotate(180deg);
	color: #ffc107;
}

.pkd-faq-icon {
	font-size: 13px;
	transition: transform 0.3s ease;
	flex-shrink: 0;
}

.pkd-faq-body {
	padding: 16px 20px;
	font-size: 14px;
	color: #475569;
	line-height: 1.8;
	font-family: var(--font-body);
	background: #fff;
}

/* --- Sidebar --- */
.pkd-sidebar {
	position: sticky;
	top: 100px;
}

/* Price Card */
.pkd-price-card {
	background: #fff;
	border-radius: 20px;
	padding: 24px;
	box-shadow: 0 8px 30px rgba(0, 45, 243, 0.1);
	border: 2px solid rgba(0, 45, 243, 0.15);
}

.pkd-price-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 6px;
}

.pkd-price-header small {
	font-size: 11px;
	text-transform: uppercase;
	color: #94a3b8;
	font-weight: 700;
	letter-spacing: 0.5px;
	font-family: var(--font-body);
}

.pkd-price-main {
	font-family: var(--font-headings);
	font-size: 32px;
	font-weight: 800;
	color: #002df3;
	line-height: 1;
}

.pkd-price-main span {
	font-size: 14px;
	color: #94a3b8;
	font-weight: 500;
}

.pkd-price-badge {
	background: #fef9c3;
	color: #b45309;
	font-size: 12px;
	font-weight: 700;
	padding: 5px 12px;
	border-radius: 20px;
	border: 1px solid #fde68a;
	font-family: var(--font-body);
}

.pkd-price-original {
	font-size: 13px;
	color: #94a3b8;
	font-family: var(--font-body);
	margin-bottom: 4px;
}

/* Booking Form */
.pkd-booking-form {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.pkd-form-group {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.pkd-form-group label {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #475569;
	font-family: var(--font-body);
}

.pkd-form-group input,
.pkd-form-group select {
	border: 1.5px solid #e2e8f0;
	border-radius: 10px;
	padding: 10px 14px;
	font-size: 14px;
	color: #1e293b;
	background: #f8fafc;
	outline: none;
	transition: border-color 0.2s ease;
	font-family: var(--font-body);
	width: 100%;
}

.pkd-form-group input:focus,
.pkd-form-group select:focus {
	border-color: #002df3;
	background: #fff;
}

.pkd-book-now-btn {
	background: #002df3;
	color: #fff;
	border: none;
	border-radius: 12px;
	padding: 14px 20px;
	font-weight: 700;
	font-size: 15px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: var(--font-headings);
	width: 100%;
	letter-spacing: 0.3px;
}

.pkd-book-now-btn:hover {
	background: #050b33;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 45, 243, 0.3);
}

.pkd-trust-row {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: center;
}

.pkd-trust-row span {
	font-size: 11px;
	color: #64748b;
	font-family: var(--font-body);
	display: flex;
	align-items: center;
	gap: 5px;
}

.pkd-trust-row span i {
	color: #16a34a;
}

/* Tour Info Sidebar */
.pkd-info-sidebar {
	background: #fff;
	border-radius: 20px;
	padding: 24px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
	border: 1px solid rgba(0, 0, 0, 0.04);
}

.pkd-sidebar-title {
	font-family: var(--font-headings);
	font-weight: 700;
	font-size: 16px;
	color: #050b33;
	margin-bottom: 16px;
	padding-bottom: 12px;
	border-bottom: 2px solid #f1f5f9;
}

.pkd-info-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 9px 0;
	border-bottom: 1px solid #f1f5f9;
	font-family: var(--font-body);
}

.pkd-info-row:last-child {
	border-bottom: none;
}

.pkd-info-row span {
	font-size: 13px;
	color: #64748b;
	display: flex;
	align-items: center;
	gap: 8px;
}

.pkd-info-row span i {
	color: #002df3;
	width: 14px;
}

.pkd-info-row strong {
	font-size: 13px;
	font-weight: 700;
	color: #1e293b;
}

/* Call CTA */
.pkd-call-cta {
	background: linear-gradient(135deg, #002df3, #050b33);
	border-radius: 16px;
	padding: 18px 20px;
	display: flex;
	align-items: center;
	gap: 16px;
	color: #fff;
}

.pkd-call-icon {
	width: 48px;
	height: 48px;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	flex-shrink: 0;
	animation: pulsePlay 2s infinite;
}

.pkd-call-cta small {
	display: block;
	font-size: 11px;
	opacity: 0.75;
	font-family: var(--font-body);
	margin-bottom: 3px;
}

.pkd-call-number {
	font-family: var(--font-headings);
	font-size: 18px;
	font-weight: 800;
	color: #ffc107;
	text-decoration: none;
	display: block;
}

/* Share Box */
.pkd-share-box {
	background: #fff;
	border-radius: 16px;
	padding: 16px 20px;
	display: flex;
	align-items: center;
	gap: 14px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	border: 1px solid rgba(0, 0, 0, 0.04);
	font-size: 13px;
	color: #475569;
	font-family: var(--font-body);
	font-weight: 600;
	flex-wrap: wrap;
}

.pkd-share-btns {
	display: flex;
	gap: 8px;
}

.pkd-share-btn {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	transition: transform 0.3s ease;
}

.pkd-share-btn:hover {
	transform: translateY(-3px);
	color: #fff;
}

.pkd-whatsapp {
	background: #25d366;
}

.pkd-facebook {
	background: #1877f2;
}

.pkd-twitter {
	background: #000;
}

.pkd-copy {
	background: #64748b;
}

/* --- Responsive --- */
@media (max-width: 991.98px) {
	.pkd-hero-title {
		font-size: 30px;
	}

	.pkd-hero-inner {
		padding-bottom: 40px;
	}

	.pkd-quick-info {
		grid-template-columns: repeat(2, 1fr);
	}

	.pkd-highlights-grid {
		grid-template-columns: 1fr;
	}

	.pkd-carry-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.pkd-sidebar {
		position: static;
	}
}

@media (max-width: 575.98px) {
	.pkd-hero-title {
		font-size: 24px;
	}

	.pkd-quick-info {
		grid-template-columns: repeat(2, 1fr);
	}

	.pkd-gallery-main {
		height: 260px;
	}

	.pkd-carry-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.pkd-itinerary::before {
		left: 40px;
	}

	.pkd-day-marker {
		width: 60px;
	}
}

/* ================================================
   CONTACT PAGE
   ================================================ */

/* --- Hero --- */
.cnt-hero {
	position: relative;
	min-height: 420px;
	display: flex;
	align-items: center;
	background: url('https://images.unsplash.com/photo-1524492412937-b28074a5d7da?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}

.cnt-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(0, 45, 243, 0.85) 0%, rgba(5, 11, 51, 0.8) 100%);
}

.cnt-hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	color: #fff;
	padding-top: 80px;
	padding-bottom: 60px;
}

.cnt-hero-sub {
	display: block;
	color: #ffc107;
	font-size: 26px;
	margin-bottom: 10px;
}

.cnt-hero-title {
	font-family: var(--font-headings);
	font-size: 52px;
	font-weight: 800;
	margin-bottom: 16px;
}

.cnt-hero-desc {
	font-size: 17px;
	color: rgba(255, 255, 255, 0.85);
	max-width: 600px;
	margin: 0 auto 28px;
	line-height: 1.7;
	font-family: var(--font-body);
}

.cnt-hero-breadcrumb {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
	font-family: var(--font-body);
}

.cnt-hero-breadcrumb a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: color 0.2s;
}

.cnt-hero-breadcrumb a:hover {
	color: #ffc107;
}

.cnt-hero-breadcrumb i {
	font-size: 11px;
}

.cnt-hero-breadcrumb span {
	color: #ffc107;
	font-weight: 600;
}

/* --- Quick Contact Cards --- */
.cnt-cards-section {
	padding: 60px 0;
	background: #f7f9fc;
}

.cnt-card {
	background: #fff;
	border-radius: 20px;
	padding: 32px 24px;
	text-align: center;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
	border: 1px solid rgba(0, 0, 0, 0.04);
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	height: 100%;
}

.cnt-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 45, 243, 0.12);
	border-color: rgba(0, 45, 243, 0.15);
}

.cnt-card-icon {
	width: 70px;
	height: 70px;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	margin: 0 auto 18px;
	transition: transform 0.3s ease;
}

.cnt-card:hover .cnt-card-icon {
	transform: scale(1.1) rotate(-5deg);
}

.cnt-icon-blue {
	background: rgba(0, 45, 243, 0.1);
	color: #002df3;
}

.cnt-icon-green {
	background: rgba(37, 211, 102, 0.1);
	color: #25d366;
}

.cnt-icon-orange {
	background: rgba(249, 115, 22, 0.1);
	color: #f97316;
}

.cnt-icon-purple {
	background: rgba(124, 58, 237, 0.1);
	color: #7c3aed;
}

.cnt-card h4 {
	font-family: var(--font-headings);
	font-weight: 700;
	font-size: 18px;
	color: #050b33;
	margin-bottom: 4px;
}

.cnt-card p {
	font-size: 13px;
	color: #94a3b8;
	margin-bottom: 12px;
	font-family: var(--font-body);
}

.cnt-card-link {
	display: block;
	font-size: 14px;
	color: #475569;
	text-decoration: none;
	font-weight: 600;
	margin-bottom: 4px;
	font-family: var(--font-body);
	transition: color 0.2s;
}

.cnt-card-link:hover {
	color: #002df3;
}

.cnt-wa-btn {
	display: inline-flex;
	align-items: center;
	background: #25d366;
	color: #fff !important;
	padding: 8px 20px;
	border-radius: 30px;
	font-size: 13px;
	margin-top: 8px;
	transition: background 0.3s ease;
}

.cnt-wa-btn:hover {
	background: #128c4e;
}

/* --- Main Section --- */
.cnt-main-section {
	padding: 80px 0 100px;
	background: #fff;
}

/* --- Form --- */
.cnt-form-wrap {
	padding-right: 20px;
}

.cnt-form-desc {
	font-size: 15px;
	color: #64748b;
	line-height: 1.8;
	margin-bottom: 30px;
	font-family: var(--font-body);
}

.cnt-form {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.cnt-input-wrap {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.cnt-input-wrap label {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.6px;
	color: #475569;
	font-family: var(--font-body);
}

.cnt-input-wrap label span {
	color: #ef4444;
}

.cnt-input-inner {
	position: relative;
	display: flex;
	align-items: center;
}

.cnt-input-inner i {
	position: absolute;
	left: 14px;
	color: #94a3b8;
	font-size: 14px;
	pointer-events: none;
	transition: color 0.2s;
	z-index: 1;
}

.cnt-input-inner input,
.cnt-input-inner select {
	width: 100%;
	border: 1.5px solid #e2e8f0;
	border-radius: 12px;
	padding: 12px 14px 12px 42px;
	font-size: 14px;
	color: #1e293b;
	background: #f8fafc;
	outline: none;
	transition: all 0.25s ease;
	font-family: var(--font-body);
}

.cnt-input-inner input:focus,
.cnt-input-inner select:focus {
	border-color: #002df3;
	background: #fff;
	box-shadow: 0 0 0 3px rgba(0, 45, 243, 0.08);
}

.cnt-input-inner input:focus+i,
.cnt-input-inner:focus-within i {
	color: #002df3;
}

.cnt-textarea-wrap {
	align-items: flex-start;
}

.cnt-textarea-wrap i {
	top: 14px;
}

.cnt-input-inner textarea {
	width: 100%;
	border: 1.5px solid #e2e8f0;
	border-radius: 12px;
	padding: 12px 14px 12px 42px;
	font-size: 14px;
	color: #1e293b;
	background: #f8fafc;
	outline: none;
	resize: vertical;
	transition: all 0.25s ease;
	font-family: var(--font-body);
	min-height: 120px;
}

.cnt-input-inner textarea:focus {
	border-color: #002df3;
	background: #fff;
	box-shadow: 0 0 0 3px rgba(0, 45, 243, 0.08);
}

.cnt-submit-btn {
	background: #002df3;
	color: #fff;
	border: none;
	border-radius: 14px;
	padding: 15px 30px;
	font-weight: 700;
	font-size: 15px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: var(--font-headings);
	display: inline-flex;
	align-items: center;
	gap: 8px;
	letter-spacing: 0.3px;
}

.cnt-submit-btn:hover {
	background: #050b33;
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(0, 45, 243, 0.3);
}

.cnt-submit-btn:disabled {
	opacity: 0.7;
	cursor: not-allowed;
	transform: none;
}

/* Success Message */
.cnt-success-msg {
	background: #f0fdf4;
	border: 1.5px solid #bbf7d0;
	border-radius: 14px;
	padding: 18px 20px;
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-top: 16px;
}

.cnt-success-msg i {
	font-size: 24px;
	color: #16a34a;
	flex-shrink: 0;
	margin-top: 2px;
}

.cnt-success-msg strong {
	display: block;
	font-family: var(--font-headings);
	font-size: 15px;
	color: #16a34a;
	margin-bottom: 4px;
}

.cnt-success-msg p {
	font-size: 14px;
	color: #166534;
	margin: 0;
	font-family: var(--font-body);
}

/* --- Map --- */
.cnt-map-wrap {
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(0, 0, 0, 0.06);
}

.cnt-map-header {
	background: #002df3;
	color: #fff;
	padding: 14px 20px;
	font-family: var(--font-headings);
	font-weight: 700;
	font-size: 15px;
}

.cnt-map-frame {
	height: 350px;
	overflow: hidden;
}

.cnt-map-frame iframe {
	width: 100%;
	height: 100%;
	display: block;
	border: none;
}

/* --- Office Card --- */
.cnt-office-card {
	background: #f7f9fc;
	border-radius: 20px;
	padding: 28px;
	border: 1px solid #e2e8f0;
}

.cnt-office-title {
	font-family: var(--font-headings);
	font-weight: 700;
	font-size: 18px;
	color: #050b33;
	margin-bottom: 20px;
	padding-bottom: 14px;
	border-bottom: 2px solid #e2e8f0;
}

.cnt-office-title i {
	color: #002df3;
}

.cnt-office-row {
	display: flex;
	gap: 16px;
	padding: 14px 0;
	border-bottom: 1px solid #e2e8f0;
	align-items: flex-start;
}

.cnt-office-row-last {
	border-bottom: none;
}

.cnt-office-icon {
	width: 40px;
	height: 40px;
	background: rgba(0, 45, 243, 0.08);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #002df3;
	font-size: 16px;
	flex-shrink: 0;
	margin-top: 2px;
}

.cnt-office-row strong {
	display: block;
	font-family: var(--font-headings);
	font-weight: 700;
	font-size: 14px;
	color: #050b33;
	margin-bottom: 4px;
}

.cnt-office-row p {
	font-size: 14px;
	color: #475569;
	margin: 0;
	line-height: 1.7;
	font-family: var(--font-body);
}

.cnt-office-row p a {
	color: #002df3;
	text-decoration: none;
	transition: color 0.2s;
}

.cnt-office-row p a:hover {
	color: #050b33;
}

/* Social Buttons */
.cnt-social-row {
	display: flex;
	gap: 8px;
	margin-top: 8px;
	flex-wrap: wrap;
}

.cnt-social-btn {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 14px;
	text-decoration: none;
	transition: transform 0.3s ease;
}

.cnt-social-btn:hover {
	transform: translateY(-4px);
	color: #fff;
}

.cnt-fb {
	background: #1877f2;
}

.cnt-ig {
	background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.cnt-yt {
	background: #ff0000;
}

.cnt-wa {
	background: #25d366;
}

.cnt-tw {
	background: #000;
}

/* --- WhatsApp Banner --- */
.cnt-wa-section {
	padding: 0 0 80px;
	background: #fff;
}

.cnt-wa-banner {
	background: linear-gradient(135deg, #25d366 0%, #128c4e 100%);
	border-radius: 24px;
	padding: 36px 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
	box-shadow: 0 15px 40px rgba(37, 211, 102, 0.25);
}

.cnt-wa-banner-left {
	display: flex;
	align-items: center;
	gap: 20px;
	color: #fff;
	flex-wrap: wrap;
}

.cnt-wa-icon-big {
	font-size: 50px;
	color: #fff;
	opacity: 0.95;
	animation: pulsePlay 2s infinite;
}

.cnt-wa-banner-left h3 {
	font-family: var(--font-headings);
	font-size: 22px;
	font-weight: 800;
	margin-bottom: 4px;
}

.cnt-wa-banner-left p {
	font-size: 14px;
	opacity: 0.9;
	margin: 0;
	font-family: var(--font-body);
	max-width: 450px;
}

.cnt-wa-cta-btn {
	background: #fff;
	color: #128c4e;
	border-radius: 50px;
	padding: 14px 32px;
	font-weight: 800;
	font-size: 15px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: all 0.3s ease;
	white-space: nowrap;
	font-family: var(--font-headings);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.cnt-wa-cta-btn:hover {
	background: #050b33;
	color: #fff;
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* --- Responsive --- */
@media (max-width: 991.98px) {
	.cnt-hero-title {
		font-size: 36px;
	}

	.cnt-form-wrap {
		padding-right: 0;
	}

	.cnt-wa-banner {
		flex-direction: column;
		text-align: center;
	}

	.cnt-wa-banner-left {
		justify-content: center;
	}
}

@media (max-width: 575.98px) {
	.cnt-hero-title {
		font-size: 28px;
	}

	.cnt-wa-banner {
		padding: 28px 20px;
	}

	.cnt-wa-icon-big {
		font-size: 36px;
	}
}

/* ================================================
   PROMO OFFER BANNER
   ================================================ */
.promo-banner-section {
	position: relative;
	padding: 80px 0;
	overflow: hidden;
}

.promo-banner-bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #050b33 0%, #002df3 50%, #7c3aed 100%);
	z-index: 0;
}

.promo-banner-bg::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

.promo-banner-inner {
	position: relative;
	z-index: 2;
	display: flex;
	gap: 50px;
	align-items: center;
	flex-wrap: wrap;
}

.promo-banner-left {
	flex: 1;
	min-width: 280px;
	color: #fff;
}

.promo-banner-tag {
	display: inline-block;
	background: rgba(255, 199, 7, 0.2);
	border: 1px solid rgba(255, 199, 7, 0.4);
	color: #ffc107;
	padding: 6px 18px;
	border-radius: 30px;
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 18px;
	font-family: var(--font-body);
}

.promo-banner-title {
	font-family: var(--font-headings);
	font-size: 38px;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 16px;
}

.promo-banner-title span {
	color: #ffc107;
}

.promo-banner-desc {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.8;
	margin-bottom: 22px;
	max-width: 520px;
	font-family: var(--font-body);
}

.promo-banner-feats {
	display: flex;
	gap: 18px;
	flex-wrap: wrap;
	margin-bottom: 28px;
}

.promo-banner-feats span {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.85);
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 7px;
	font-family: var(--font-body);
}

.promo-banner-feats span i {
	color: #ffc107;
}

.promo-banner-btns {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

.promo-btn-primary {
	background: #ffc107;
	color: #050b33;
	border-radius: 40px;
	padding: 13px 28px;
	font-weight: 800;
	font-size: 14px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	transition: all 0.3s ease;
	font-family: var(--font-headings);
}

.promo-btn-primary:hover {
	background: #fff;
	color: #002df3;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.promo-btn-secondary {
	background: transparent;
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.5);
	border-radius: 40px;
	padding: 13px 28px;
	font-weight: 700;
	font-size: 14px;
	text-decoration: none;
	transition: all 0.3s ease;
	font-family: var(--font-headings);
}

.promo-btn-secondary:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: #fff;
	color: #fff;
}

/* Countdown */
.promo-banner-right {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: center;
}

.promo-countdown-label {
	color: rgba(255, 255, 255, 0.7);
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 700;
	margin-bottom: 10px;
	font-family: var(--font-body);
}

.promo-countdown {
	display: flex;
	align-items: center;
	gap: 8px;
}

.promo-count-box {
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 16px;
	padding: 14px 18px;
	text-align: center;
	min-width: 72px;
	backdrop-filter: blur(6px);
}

.promo-count-box span {
	display: block;
	font-family: var(--font-headings);
	font-size: 32px;
	font-weight: 800;
	color: #ffc107;
	line-height: 1;
}

.promo-count-box small {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.6);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-family: var(--font-body);
}

.promo-count-sep {
	font-size: 28px;
	font-weight: 800;
	color: rgba(255, 255, 255, 0.4);
	font-family: var(--font-headings);
	margin-bottom: 20px;
}

/* Promo Price Card */
.promo-price-card {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 20px;
	padding: 24px 30px;
	text-align: center;
	color: #fff;
	backdrop-filter: blur(8px);
	width: 100%;
	max-width: 280px;
}

.promo-price-card small {
	font-size: 12px;
	opacity: 0.7;
	display: block;
	margin-bottom: 10px;
	font-family: var(--font-body);
}

.promo-price {
	font-family: var(--font-headings);
	font-size: 28px;
	font-weight: 800;
	color: #ffc107;
	margin-bottom: 4px;
}

.promo-old-price {
	font-size: 16px;
	opacity: 0.5;
	color: #fff;
	text-decoration: line-through;
	margin-right: 6px;
}

.promo-per {
	font-size: 12px;
	opacity: 0.65;
	display: block;
	margin-bottom: 16px;
	font-family: var(--font-body);
}

.promo-book-btn {
	display: inline-block;
	background: #ffc107;
	color: #050b33;
	border-radius: 30px;
	padding: 11px 28px;
	font-weight: 800;
	font-size: 14px;
	text-decoration: none;
	transition: all 0.3s ease;
	font-family: var(--font-headings);
}

.promo-book-btn:hover {
	background: #fff;
	color: #002df3;
	transform: scale(1.05);
}

/* ================================================
   STATS SECTION
   ================================================ */
.stats-section {
	padding: 80px 0;
	background: #f7f9fc;
}

.stat-card {
	background: #fff;
	border-radius: 20px;
	padding: 36px 20px;
	text-align: center;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
	border: 1px solid rgba(0, 0, 0, 0.04);
	position: relative;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-card::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #002df3, #7c3aed);
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

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

.stat-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0, 45, 243, 0.12);
}

.stat-icon {
	width: 60px;
	height: 60px;
	background: rgba(0, 45, 243, 0.08);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
	font-size: 24px;
	color: #002df3;
	transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
	background: #002df3;
	color: #fff;
	transform: scale(1.1);
}

.stat-number {
	font-family: var(--font-headings);
	font-size: 44px;
	font-weight: 800;
	color: #050b33;
	line-height: 1;
	display: inline;
}

.stat-plus,
.stat-decimal {
	font-family: var(--font-headings);
	font-size: 28px;
	font-weight: 800;
	color: #002df3;
	display: inline;
}

.stat-label {
	font-size: 14px;
	color: #64748b;
	font-weight: 600;
	margin-top: 10px;
	font-family: var(--font-body);
}

/* Trust Badges */
.trust-badges-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin-top: 50px;
}

.trust-badge {
	background: #fff;
	border-radius: 16px;
	padding: 20px;
	display: flex;
	align-items: flex-start;
	gap: 14px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	border: 1px solid rgba(0, 0, 0, 0.04);
	transition: all 0.3s ease;
}

.trust-badge:hover {
	border-color: rgba(0, 45, 243, 0.2);
	box-shadow: 0 8px 20px rgba(0, 45, 243, 0.08);
}

.trust-badge-icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: rgba(0, 45, 243, 0.08);
	color: #002df3;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.trust-badge strong {
	display: block;
	font-family: var(--font-headings);
	font-weight: 700;
	font-size: 14px;
	color: #050b33;
	margin-bottom: 4px;
}

.trust-badge p {
	font-size: 12px;
	color: #64748b;
	margin: 0;
	font-family: var(--font-body);
	line-height: 1.5;
}

/* ================================================
   TESTIMONIALS SECTION
   ================================================ */
.testimonials-section {
	padding: 80px 0;
	background: #fff;
	position: relative;
	overflow: hidden;
}

.testimonials-bg-pattern {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at 20% 50%, rgba(0, 45, 243, 0.04) 0%, transparent 60%),
		radial-gradient(ellipse at 80% 50%, rgba(124, 58, 237, 0.04) 0%, transparent 60%);
}

.testi-swiper {
	padding-bottom: 50px !important;
}

.testi-card {
	background: #fff;
	border-radius: 20px;
	padding: 30px;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
	border: 1px solid rgba(0, 0, 0, 0.05);
	height: 100%;
	display: flex;
	flex-direction: column;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	position: relative;
}

.testi-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 40px rgba(0, 45, 243, 0.12);
	border-color: rgba(0, 45, 243, 0.15);
}

.testi-quote {
	font-size: 32px;
	color: rgba(0, 45, 243, 0.15);
	margin-bottom: 16px;
	line-height: 1;
}

.testi-text {
	font-size: 14px;
	color: #475569;
	line-height: 1.8;
	font-family: var(--font-body);
	flex-grow: 1;
	margin-bottom: 22px;
	font-style: italic;
}

.testi-footer {
	display: flex;
	align-items: center;
	gap: 12px;
	border-top: 1px solid #f1f5f9;
	padding-top: 18px;
	flex-wrap: wrap;
}

.testi-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: linear-gradient(135deg, #002df3, #7c3aed);
	color: #fff;
	font-family: var(--font-headings);
	font-weight: 800;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.testi-info {
	flex-grow: 1;
}

.testi-info strong {
	display: block;
	font-family: var(--font-headings);
	font-weight: 700;
	font-size: 14px;
	color: #050b33;
}

.testi-info span {
	font-size: 12px;
	color: #94a3b8;
	font-family: var(--font-body);
}

.testi-stars {
	color: #fbbf24;
	font-size: 13px;
	display: flex;
	gap: 2px;
}

.testi-pagination .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: #e2e8f0;
	opacity: 1;
	transition: all 0.3s ease;
}

.testi-pagination .swiper-pagination-bullet-active {
	background: #002df3;
	width: 28px;
	border-radius: 5px;
}

/* ================================================
   NEWSLETTER SECTION
   ================================================ */
.newsletter-section {
	position: relative;
	padding: 80px 0;
	overflow: hidden;
}

.newsletter-bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #050b33 0%, #002df3 100%);
}

.newsletter-bg::after {
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(255, 199, 7, 0.12) 0%, transparent 70%);
	border-radius: 50%;
}

.newsletter-inner {
	position: relative;
	z-index: 2;
}

.newsletter-tag {
	display: inline-block;
	background: rgba(255, 199, 7, 0.15);
	border: 1px solid rgba(255, 199, 7, 0.35);
	color: #ffc107;
	padding: 6px 16px;
	border-radius: 30px;
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 16px;
	font-family: var(--font-body);
}

.newsletter-title {
	font-family: var(--font-headings);
	font-size: 34px;
	font-weight: 800;
	color: #fff;
	line-height: 1.25;
	margin-bottom: 14px;
}

.newsletter-desc {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.75);
	line-height: 1.8;
	font-family: var(--font-body);
	max-width: 480px;
	margin-bottom: 20px;
}

.newsletter-perks {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.newsletter-perks span {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.8);
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 7px;
	font-family: var(--font-body);
}

.newsletter-perks span i {
	color: #ffc107;
}

/* Form */
.newsletter-form-wrap {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 24px;
	padding: 30px;
}

.newsletter-input-row {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.newsletter-input-wrap {
	position: relative;
	display: flex;
	align-items: center;
}

.newsletter-input-wrap i {
	position: absolute;
	left: 14px;
	color: rgba(255, 255, 255, 0.5);
	font-size: 14px;
	pointer-events: none;
	transition: color 0.2s;
}

.newsletter-input-wrap input {
	width: 100%;
	background: rgba(255, 255, 255, 0.12);
	border: 1.5px solid rgba(255, 255, 255, 0.2);
	border-radius: 12px;
	padding: 13px 14px 13px 42px;
	font-size: 14px;
	color: #fff;
	outline: none;
	font-family: var(--font-body);
	transition: all 0.25s ease;
}

.newsletter-input-wrap input::placeholder {
	color: rgba(255, 255, 255, 0.45);
}

.newsletter-input-wrap input:focus {
	background: rgba(255, 255, 255, 0.18);
	border-color: rgba(255, 199, 7, 0.6);
}

.newsletter-submit-btn {
	background: #ffc107;
	color: #050b33;
	border: none;
	border-radius: 12px;
	padding: 14px 24px;
	font-weight: 800;
	font-size: 15px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: var(--font-headings);
	width: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.newsletter-submit-btn:hover {
	background: #fff;
	color: #002df3;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.newsletter-success {
	color: #ffc107;
	font-size: 14px;
	font-weight: 700;
	text-align: center;
	padding: 14px;
	border-radius: 10px;
	background: rgba(255, 199, 7, 0.1);
	border: 1px solid rgba(255, 199, 7, 0.3);
	font-family: var(--font-body);
	margin-top: 8px;
}

/* Social */
.newsletter-social {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 20px;
	flex-wrap: wrap;
}

.newsletter-social span {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.6);
	font-family: var(--font-body);
}

.nl-social {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 14px;
	text-decoration: none;
	transition: transform 0.3s ease;
}

.nl-social:hover {
	transform: translateY(-4px);
	color: #fff;
}

.nl-fb {
	background: #1877f2;
}

.nl-ig {
	background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.nl-yt {
	background: #ff0000;
}

.nl-wa {
	background: #25d366;
}

/* Responsive */
@media (max-width: 991.98px) {
	.promo-banner-title {
		font-size: 28px;
	}

	.promo-banner-inner {
		flex-direction: column;
	}

	.promo-banner-right {
		width: 100%;
	}

	.trust-badges-row {
		grid-template-columns: repeat(2, 1fr);
	}

	.newsletter-title {
		font-size: 26px;
	}
}

@media (max-width: 575.98px) {
	.promo-banner-title {
		font-size: 22px;
	}

	.promo-countdown {
		flex-wrap: wrap;
		justify-content: center;
	}

	.trust-badges-row {
		grid-template-columns: 1fr;
	}

	.stat-number {
		font-size: 34px;
	}
}

/* ========================================================================================
 * Dynamic Multi-Level Nested Dropdowns & Mobile Accordion Submenus
 * ======================================================================================== */

/* --- Desktop Dropdown Hover Actions --- */
@media (min-width: 992px) {

	/* Main dropdown list opens on hover */
	.tourly-navbar .nav-item.dropdown:hover>.dropdown-menu {
		display: block !important;
		margin-top: 0 !important;
		opacity: 1 !important;
		visibility: visible !important;
		pointer-events: auto !important;
		animation: tourlyFadeInDown 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
	}

	/* Keep sub-dropdown trigger position relative */
	.dropdown-submenu {
		position: relative;
	}

	/* Hide the sub-dropdown menu initially */
	.dropdown-submenu>.dropdown-menu {
		top: 0;
		left: 100%;
		margin-top: -8px !important;
		margin-left: 0px !important;
		display: none !important;
		opacity: 0 !important;
		visibility: hidden !important;
	}

	/* Show sub-dropdown menu on hover */
	.dropdown-submenu:hover>.dropdown-menu {
		display: block !important;
		opacity: 1 !important;
		visibility: visible !important;
		pointer-events: auto !important;
		animation: tourlyFadeInRight 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
	}

	/* Style right-facing arrow indicator for nested sub-dropdown triggers */
	.dropdown-submenu>.dropdown-toggle::after {
		content: '\f105' !important;
		/* right angle bracket icon */
		font-family: 'Font Awesome 6 Free' !important;
		font-weight: 900 !important;
		float: right !important;
		margin-top: 4px !important;
		margin-left: 15px !important;
		border: none !important;
		font-size: 11px !important;
		color: rgba(255, 255, 255, 0.4) !important;
		transition: transform 0.2s ease, color 0.2s ease !important;
	}

	.dropdown-submenu:hover>.dropdown-toggle::after {
		color: #0abdb0 !important;
		transform: translateX(2px);
	}
}

/* --- Mobile / Offcanvas Menu Custom Styles --- */
.mobile-nav-item {
	margin-bottom: 5px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-nav-link {
	font-family: var(--font-body);
	font-weight: 600;
	color: var(--color-secondary) !important;
	font-size: 16px;
	padding: 10px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-decoration: none;
	transition: all 0.25s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link[aria-expanded="true"] {
	color: var(--color-primary) !important;
}

.mobile-nav-link i {
	font-size: 12px;
	color: rgba(0, 71, 149, 0.5);
	transition: transform 0.25s ease;
}

.mobile-nav-link[aria-expanded="true"] i {
	transform: rotate(180deg);
	color: var(--color-primary);
}

/* Mobile sub-menu container (e.g. states under Pan India) */
.mobile-sub-menu {
	border-left: 1.5px solid rgba(0, 71, 149, 0.15);
	padding-left: 15px;
	margin-bottom: 10px;
	margin-top: 5px;
}

.mobile-sub-nav-item {
	margin-bottom: 5px;
}

.mobile-sub-nav-link {
	font-family: var(--font-body);
	font-weight: 550;
	font-size: 14.5px;
	color: rgba(0, 43, 92, 0.8) !important;
	padding: 8px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-decoration: none;
	transition: all 0.25s ease;
}

.mobile-sub-nav-link:hover,
.mobile-sub-nav-link[aria-expanded="true"] {
	color: var(--color-primary) !important;
}

.mobile-sub-nav-link i {
	font-size: 10px;
	color: rgba(0, 71, 149, 0.4);
	transition: transform 0.25s ease;
}

.mobile-sub-nav-link[aria-expanded="true"] i {
	transform: rotate(180deg);
}

/* Mobile city-menu container (cities under states) */
.mobile-city-menu {
	border-left: 1px dashed rgba(0, 71, 149, 0.2);
	padding-left: 12px;
	margin-bottom: 5px;
	margin-top: 2px;
}

.mobile-city-menu li {
	margin-bottom: 4px;
}

.mobile-city-menu a {
	font-family: var(--font-body);
	font-size: 13.5px !important;
	font-weight: 500 !important;
	color: var(--color-text-muted) !important;
	text-decoration: none;
	display: block;
	padding: 6px 0 !important;
	transition: all 0.2s ease;
}

.mobile-city-menu a:hover {
	color: var(--color-primary) !important;
	padding-left: 5px !important;
}

/* --- Dropdown Animation Keyframes --- */
@keyframes tourlyFadeInDown {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

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

@keyframes tourlyFadeInRight {
	from {
		opacity: 0;
		transform: translateX(10px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* --- Thank You Modal CSS --- */
#thankYouModal {
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	background-color: rgba(2, 8, 19, 0.6);
}

.thank-you-content {
	background: var(--bg-secondary);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 24px;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
	position: relative;
	overflow: hidden;
}

.thank-you-content::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(10, 189, 176, 0.08) 0%, transparent 60%);
	pointer-events: none;
}

.thank-you-close {
	position: absolute;
	top: 20px;
	right: 20px;
	filter: invert(1) grayscale(1) brightness(1.5);
	opacity: 0.7;
	transition: all 0.3s ease;
	z-index: 10;
}

.thank-you-close:hover {
	opacity: 1;
	transform: rotate(90deg);
}

.success-icon-wrap {
	position: relative;
	width: 100px;
	height: 100px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.success-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #10b981, #059669);
	color: #ffffff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 38px;
	box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
	z-index: 2;
	animation: popInSuccess 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.success-pulse-ring {
	position: absolute;
	width: 100px;
	height: 100px;
	border: 3px solid rgba(16, 185, 129, 0.2);
	border-radius: 50%;
	animation: pulseSuccess 2s infinite ease-out;
	z-index: 1;
}

.thank-you-title {
	font-family: var(--font-headings);
	font-size: 32px;
	font-weight: 700;
	color: #ffffff;
	margin-top: 10px;
	letter-spacing: 0.5px;
	animation: fadeInUpSuccess 0.6s ease-out 0.2s both;
}

.thank-you-text {
	font-family: var(--font-body);
	font-size: 15px;
	color: var(--text-secondary);
	line-height: 1.6;
	animation: fadeInUpSuccess 0.6s ease-out 0.3s both;
}

.reference-box {
	background: rgba(10, 23, 51, 0.6);
	border: 1px dashed rgba(10, 189, 176, 0.3);
	border-radius: 12px;
	padding: 12px 20px;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	transition: all 0.3s ease;
	margin: 0 auto;
	animation: fadeInUpSuccess 0.6s ease-out 0.4s both;
}

.reference-box:hover {
	background: rgba(10, 23, 51, 0.9);
	border-color: rgba(10, 189, 176, 0.6);
	transform: translateY(-2px);
}

.ref-label {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--text-muted);
	font-weight: 600;
}

.ref-value {
	font-family: monospace;
	font-size: 16px;
	color: #0abdb0;
	font-weight: 700;
}

.thank-you-actions {
	animation: fadeInUpSuccess 0.6s ease-out 0.5s both;
}

.btn-thank-you {
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 600;
	padding: 12px 28px;
	border-radius: 30px;
	transition: all 0.3s ease;
}

.btn-thank-you.btn-primary {
	background: var(--accent-gradient);
	border: none;
	color: #ffffff;
	box-shadow: 0 8px 20px rgba(10, 189, 176, 0.2);
}

.btn-thank-you.btn-primary:hover {
	background: linear-gradient(135deg, #0bcbc0, #0056b3);
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(10, 189, 176, 0.3);
}

.btn-thank-you.btn-outline-secondary {
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: var(--text-secondary);
}

.btn-thank-you.btn-outline-secondary:hover {
	background: rgba(255, 255, 255, 0.05);
	color: #ffffff;
	border-color: rgba(255, 255, 255, 0.4);
	transform: translateY(-2px);
}

/* Animations */
@keyframes popInSuccess {
	0% {
		transform: scale(0.5);
		opacity: 0;
	}

	70% {
		transform: scale(1.1);
	}

	100% {
		transform: scale(1);
		opacity: 1;
	}
}

@keyframes pulseSuccess {
	0% {
		transform: scale(0.95);
		opacity: 0.8;
	}

	50% {
		transform: scale(1.15);
		opacity: 0.4;
	}

	100% {
		transform: scale(1.35);
		opacity: 0;
	}
}

@keyframes fadeInUpSuccess {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

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

/* =================================================================------------------------
* Promo Modal Styles (Ultra-Premium Glassmorphism Refinement)
* ---------------------------------------------------------------------------------------- */
.promo-modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(4, 9, 30, 0.82);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s ease;
	padding: 20px;
}

.promo-modal-overlay.active {
	opacity: 1;
	visibility: visible;
}

.promo-modal-container {
	position: relative;
	width: 100%;
	max-width: 840px;
	height: 480px;
	background: rgba(8, 17, 36, 0.95);
	backdrop-filter: blur(25px);
	-webkit-backdrop-filter: blur(25px);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 28px;
	overflow: hidden;
	box-shadow: 0 35px 80px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
	display: flex;
	transform: scale(0.85) translateY(30px);
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.promo-modal-overlay.active .promo-modal-container {
	transform: scale(1) translateY(0);
}

/* Close Button */
.promo-modal-close {
	position: absolute;
	top: 20px;
	right: 20px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.1);
	width: 38px;
	height: 38px;
	border-radius: 50%;
	color: #ffffff;
	font-size: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 100;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.promo-modal-close:hover {
	background: #1caaf3;
	border-color: #1caaf3;
	color: #ffffff;
	transform: rotate(90deg) scale(1.08);
	box-shadow: 0 0 15px rgba(28, 170, 243, 0.5);
}

/* Left Panel: Immersive Visual Showcase */
.promo-left-panel {
	width: 42%;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 40px;
}

.promo-hero-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('https://images.unsplash.com/photo-1605649487212-47bdab064df7?auto=format&fit=crop&w=600&q=80');
	background-size: cover;
	background-position: center;
	transition: transform 12s cubic-bezier(0.16, 1, 0.3, 1);
	z-index: 1;
}

.promo-modal-overlay.active .promo-hero-image {
	transform: scale(1.15);
}

.promo-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(8, 17, 36, 0.1) 0%, rgba(8, 17, 36, 0.95) 90%);
	z-index: 2;
}

/* Floating Glass Tag */
.promo-floating-tag {
	position: absolute;
	top: 25px;
	left: 25px;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	padding: 6px 14px;
	border-radius: 50px;
	color: #ffffff;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.5px;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.promo-hero-content {
	position: relative;
	z-index: 3;
}

.promo-hero-cursive {
	font-family: var(--font-script);
	color: #ffd024;
	font-size: 26px;
	margin-bottom: 2px;
	display: block;
}

.promo-hero-title {
	font-family: var(--font-headings);
	font-size: 36px;
	color: #ffffff;
	font-weight: 800;
	letter-spacing: 1px;
	margin-top: -2px;
	margin-bottom: 2px;
	text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.promo-hero-subtitle {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.7);
	font-weight: 500;
	margin: 0;
	letter-spacing: 0.5px;
}

/* Right Panel: Promotional Offer & CTA */
.promo-right-panel {
	width: 58%;
	display: flex;
	align-items: center;
	padding: 40px 45px;
	background: rgba(5, 11, 40, 0.35);
	z-index: 2;
}

.promo-right-content {
	width: 100%;
}

.promo-brand-wrap {
	margin-bottom: 18px;
}

.promo-brand-logo {
	height: 38px;
	width: auto;
	object-fit: contain;
}

.promo-brand-text {
	font-family: var(--font-headings);
	color: #ffffff;
	font-weight: 700;
	font-size: 22px;
	letter-spacing: 0.5px;
}

.promo-tagline {
	font-family: var(--font-body);
	font-size: 11px;
	font-weight: 700;
	color: #1caaf3;
	letter-spacing: 2px;
	display: block;
	margin-bottom: 8px;
}

.promo-title {
	font-family: var(--font-headings);
	font-size: 28px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.25;
	margin-bottom: 12px;
}

.text-glow-gold {
	color: #ffd024;
	text-shadow: 0 0 20px rgba(255, 208, 36, 0.4);
}

.promo-desc {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.65);
	line-height: 1.6;
	margin-bottom: 22px;
}

.promo-feature-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 26px;
}

.promo-feature-item {
	display: flex;
	align-items: center;
	gap: 12px;
	color: rgba(255, 255, 255, 0.85);
	font-size: 13px;
	font-weight: 500;
}

.promo-feature-item .feature-icon {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: rgba(28, 170, 243, 0.12);
	color: #1caaf3;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	border: 1px solid rgba(28, 170, 243, 0.15);
}

.promo-action-wrap {
	width: 100%;
}

.promo-action-btn {
	width: 100%;
	background: linear-gradient(135deg, #1caaf3 0%, #0dbcb6 100%);
	color: #ffffff;
	border: none;
	font-family: var(--font-headings);
	font-weight: 700;
	font-size: 15px;
	letter-spacing: 1px;
	padding: 13px 28px;
	border-radius: 100px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 24px rgba(28, 170, 243, 0.35);
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	position: relative;
	overflow: hidden;
}

.promo-action-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 30px rgba(28, 170, 243, 0.5);
	background: linear-gradient(135deg, #ffd024 0%, #ff9f00 100%);
	color: #081124;
}

.promo-urgency-note {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.45);
	margin-top: 10px;
	display: flex;
	align-items: center;
	gap: 4px;
}

/* Responsive Styling */
@media (max-width: 800px) {
	.promo-modal-container {
		flex-direction: column;
		height: auto;
		max-height: 90vh;
		overflow-y: auto;
		max-width: 420px;
		border-radius: 20px;
	}
	
	.promo-left-panel {
		width: 100%;
		height: 200px;
		padding: 30px 25px;
	}
	
	.promo-right-panel {
		width: 100%;
		padding: 30px 25px 35px;
		background: rgba(8, 17, 36, 0.45);
	}
	
	.promo-hero-title {
		font-size: 28px;
	}
	
	.promo-title {
		font-size: 24px;
	}
}

/* =================================================================------------------------
* Package Detail Booking Modal (Glassmorphism & Split-Screen)
* ---------------------------------------------------------------------------------------- */
.pkd-modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(4, 9, 30, 0.82);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s ease;
	padding: 20px;
}

.pkd-modal-overlay.active {
	opacity: 1;
	visibility: visible;
}

.pkd-modal-container {
	position: relative;
	width: 100%;
	max-width: 820px;
	height: 520px;
	background: rgba(8, 17, 36, 0.95);
	backdrop-filter: blur(25px);
	-webkit-backdrop-filter: blur(25px);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 28px;
	overflow: hidden;
	box-shadow: 0 35px 80px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
	display: flex;
	transform: scale(0.85) translateY(30px);
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.pkd-modal-overlay.active .pkd-modal-container {
	transform: scale(1) translateY(0);
}

/* Close Button */
.pkd-modal-close {
	position: absolute;
	top: 18px;
	right: 18px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.1);
	width: 36px;
	height: 36px;
	border-radius: 50%;
	color: #ffffff;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 100;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pkd-modal-close:hover {
	background: #1caaf3;
	border-color: #1caaf3;
	color: #ffffff;
	transform: rotate(90deg) scale(1.08);
	box-shadow: 0 0 15px rgba(28, 170, 243, 0.5);
}

/* Left Panel: Package Details Showcase */
.pkd-modal-left {
	width: 44%;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 40px 30px;
	background-size: cover;
	background-position: center;
}

.pkd-modal-left-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(8, 17, 36, 0.2) 0%, rgba(8, 17, 36, 0.95) 90%);
	z-index: 2;
}

.pkd-modal-tags {
	position: absolute;
	top: 25px;
	left: 25px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	z-index: 3;
}

.pkd-tag-location {
	background: rgba(8, 17, 36, 0.6);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	padding: 6px 14px;
	border-radius: 50px;
	color: #ffffff;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.5px;
	display: inline-flex;
	align-items: center;
}

.pkd-tag-discount {
	background: #ffc107;
	color: #081124;
	padding: 5px 12px;
	border-radius: 50px;
	font-size: 11px;
	font-weight: 700;
	align-self: flex-start;
	box-shadow: 0 4px 10px rgba(255, 193, 7, 0.3);
}

.pkd-modal-left-content {
	position: relative;
	z-index: 3;
}

.pkd-modal-badge {
	font-family: var(--font-body);
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	color: #ffd024;
	letter-spacing: 1.5px;
	display: block;
	margin-bottom: 6px;
}

.pkd-modal-package-title {
	font-family: var(--font-headings);
	font-size: 32px;
	color: #ffffff;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 8px;
	text-shadow: 0 4px 10px rgba(0, 0, 0, 0.45);
}

.pkd-modal-meta {
	display: flex;
	gap: 12px;
	margin-bottom: 20px;
}

.pkd-modal-meta-item {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.75);
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.pkd-modal-price-box {
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	padding-top: 15px;
}

.pkd-price-label {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.5);
	text-transform: uppercase;
	letter-spacing: 1px;
	display: block;
	margin-bottom: 2px;
}

.pkd-price-row {
	display: flex;
	align-items: baseline;
	gap: 10px;
}

.pkd-price-current {
	font-family: var(--font-headings);
	font-size: 28px;
	font-weight: 800;
	color: #ffd024;
}

.pkd-price-original {
	font-size: 16px;
	text-decoration: line-through;
	color: rgba(255, 255, 255, 0.4);
}

/* Right Panel: Form Section */
.pkd-modal-right {
	width: 56%;
	display: flex;
	align-items: center;
	padding: 35px 40px;
	background: rgba(5, 11, 40, 0.35);
	z-index: 2;
}

.pkd-modal-right-content {
	width: 100%;
}

.pkd-form-title {
	font-family: var(--font-headings);
	font-size: 26px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 4px;
}

.pkd-form-subtitle {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.55);
	line-height: 1.5;
	margin-bottom: 22px;
}

/* Form Fields */
.pkd-form-field {
	margin-bottom: 15px;
}

.pkd-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
}

.pkd-modal-form label {
	font-family: var(--font-body) !important;
	font-weight: 600;
	font-size: 11px;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 5px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	display: flex;
	align-items: center;
	gap: 5px;
}

.pkd-modal-form label i {
	color: #1caaf3;
	font-size: 10px;
}

.pkd-input-wrap {
	position: relative;
}

.pkd-modal-form .form-control,
.pkd-modal-form .form-select {
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 8px;
	padding: 8px 14px;
	font-family: var(--font-body) !important;
	font-size: 13px;
	color: #ffffff;
	background-color: rgba(255, 255, 255, 0.05);
	transition: all 0.25s ease;
	box-shadow: none;
	height: 40px;
}

/* Dropdown arrow fix for dark background */
.pkd-modal-form select.form-select {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
	background-size: 12px 12px;
	background-repeat: no-repeat;
	background-position: right 14px center;
	padding-right: 36px;
}

.pkd-modal-form .form-control:focus,
.pkd-modal-form .form-select:focus {
	border-color: #1caaf3;
	background-color: rgba(255, 255, 255, 0.09);
	box-shadow: 0 0 0 4px rgba(28, 170, 243, 0.15);
	outline: none;
	color: #ffffff;
}

.pkd-modal-form .form-control::placeholder {
	color: rgba(255, 255, 255, 0.35);
}

.pkd-input-wrap .field-icon {
	position: absolute;
	right: 14px;
	top: 50%;
	transform: translateY(-50%);
	color: rgba(255, 255, 255, 0.35);
	font-size: 13px;
	pointer-events: none;
	transition: color 0.25s ease;
}

.pkd-input-wrap:focus-within .field-icon {
	color: #1caaf3;
}

/* Submit Button */
.pkd-modal-submit-btn {
	width: 100%;
	background: linear-gradient(135deg, #1caaf3 0%, #0dbcb6 100%);
	color: #ffffff;
	border: none;
	border-radius: 50px;
	padding: 11px 24px;
	font-family: var(--font-headings) !important;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.5px;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	box-shadow: 0 6px 20px rgba(28, 170, 243, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 10px;
}

.pkd-modal-submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(28, 170, 243, 0.45);
	filter: brightness(1.05);
}

.pkd-modal-trust-note {
	font-size: 10px;
	color: rgba(255, 255, 255, 0.4);
	margin-top: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
}

/* Responsive Styling */
@media (max-width: 767px) {
	.pkd-modal-container {
		flex-direction: column;
		height: auto;
		max-height: 90vh;
		overflow-y: auto;
		max-width: 420px;
		border-radius: 20px;
	}
	
	.pkd-modal-left {
		width: 100%;
		height: 180px;
		padding: 25px;
	}
	
	.pkd-modal-right {
		width: 100%;
		padding: 25px 20px 30px;
		background: rgba(8, 17, 36, 0.45);
	}
	
	.pkd-modal-package-title {
		font-size: 26px;
	}
	
	.pkd-form-title {
		font-size: 22px;
	}
	
	.pkd-form-row {
		grid-template-columns: 1fr;
		gap: 0;
	}
}