﻿:root {
	--primary: #2b6c8f;
	--primary-dark: #1e4f6b;
	--secondary: #f5b041;
	--accent: #27ae60;
	--gray-light: #f8f9fa;
	--gray: #6c757d;
	--dark: #343a40;
}

body {
	font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
	color: #333;
	line-height: 1.6;
}

html {
	scroll-behavior: smooth;
}

/* ===== NAVBAR ===== */
.navbar {
	padding: 0.5rem 0;
	background: white !important;
	box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.navbar-brand {
	display: flex;
	align-items: center;
	gap: 12px;
}

	.navbar-brand img {
		height: 50px;
		width: auto;
		transition: transform 0.2s;
	}

	.navbar-brand:hover img {
		transform: scale(1.05);
	}

	.navbar-brand span {
		font-weight: 600;
		color: var(--primary);
		font-size: 1.4rem;
		letter-spacing: -0.5px;
	}

.nav-link {
	font-weight: 500;
	color: var(--dark) !important;
	padding: 0.8rem 1.2rem !important;
	transition: color 0.2s;
	position: relative;
}

	.nav-link:hover {
		color: var(--primary) !important;
	}

.navbar .nav-item:not(.dropdown) > .nav-link.active {
	color: var(--primary);
}

	.navbar .nav-item:not(.dropdown) > .nav-link.active::after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 1.2rem;
		right: 1.2rem;
		height: 3px;
		background: var(--primary);
		border-radius: 3px 3px 0 0;
	}

.dropdown-toggle {
	display: flex;
	align-items: center;
	gap: 5px;
}

	.dropdown-toggle::after {
		display: inline-block;
		margin-left: 0.5em;
		vertical-align: middle;
		content: "";
		border-top: 0.3em solid;
		border-right: 0.3em solid transparent;
		border-left: 0.3em solid transparent;
		transition: transform 0.2s;
	}

	.dropdown-toggle[aria-expanded="true"]::after {
		transform: rotate(180deg);
	}

.nav-item.dropdown > .nav-link.active {
	color: var(--primary) !important;
}

	.nav-item.dropdown > .nav-link.active::after {
		border-top-color: var(--primary);
	}

.whatsapp-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #25D366;
	color: white !important;
	padding: 10px 20px;
	border-radius: 50px;
	font-weight: 600;
	transition: all 0.2s;
	text-decoration: none;
}

	.whatsapp-link:hover {
		background: #128C7E;
		transform: translateY(-2px);
		box-shadow: 0 5px 15px rgba(37,211,102,0.3);
	}

/* ===== MEGA MENU ===== */
.dropdown-mega {
	position: static;
}

	.dropdown-mega .dropdown-menu {
		width: 100%;
		border: none;
		border-radius: 0 0 12px 12px;
		box-shadow: 0 10px 30px rgba(0,0,0,0.1);
		margin-top: 0;
		padding: 2rem !important;
		border-top: 3px solid var(--primary);
	}

	.dropdown-mega h6 {
		color: var(--primary);
		font-size: 1rem;
		margin-bottom: 1rem;
		padding-bottom: 0.5rem;
		border-bottom: 2px solid #eef2f6;
	}

	.dropdown-mega ul {
		list-style: none;
		padding: 0;
		margin: 0;
	}

		.dropdown-mega ul li {
			margin-bottom: 0.5rem;
		}

			.dropdown-mega ul li a {
				color: var(--gray);
				text-decoration: none;
				transition: all 0.2s;
				display: block;
				padding: 0.25rem 0;
			}

				.dropdown-mega ul li a:hover {
					color: var(--primary);
					transform: translateX(5px);
				}

/* ===== HERO SECTIONS ===== */
.hero {
	position: relative;
	min-height: 600px;
	display: flex;
	align-items: center;
	background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/north-cyprus-transfer.jpg');
	background-size: cover;
	background-position: center;
	color: white;
	margin-top: -1px;
}

.page-hero {
	background: linear-gradient(rgba(43, 108, 143, 0.9), rgba(30, 79, 107, 0.95)), url('../images/larnaca-to-kyrenia-bg.jpg');
	background-size: cover;
	background-position: center;
	color: white;
	padding: 4rem 0 8rem;
}

.hero-content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.hero h1, .page-hero h1 {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	line-height: 1.2;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-hero h1 {
	font-size: 2.5rem;
}

.hero p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	opacity: 0.95;
}

.page-hero .breadcrumb {
	background: transparent;
	padding: 0;
	margin-bottom: 1rem;
}

.page-hero .breadcrumb-item a {
	color: rgba(255,255,255,0.8);
	text-decoration: none;
}

	.page-hero .breadcrumb-item a:hover {
		color: white;
	}

.page-hero .breadcrumb-item.active {
	color: white;
}

.page-hero .breadcrumb-item + .breadcrumb-item::before {
	color: rgba(255,255,255,0.5);
}

/* ===== BOOKING CARD + TABS ===== */
.booking-card {
	background: white;
	border-radius: 16px;
	padding: 2rem;
	position: relative;
	z-index: 10;
	box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.hero + .container .booking-card {
	margin-top: -100px;
}

.page-hero + .container .booking-card {
	margin-top: -80px;
}

.nav-tabs-custom {
	border-bottom: 2px solid #eef2f6;
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	margin-bottom: 0;
	padding-left: 0;
	list-style: none;
}

	.nav-tabs-custom .nav-item {
		margin-bottom: -2px;
	}

	.nav-tabs-custom .nav-link {
		border: none !important;
		color: var(--gray) !important;
		font-weight: 600;
		padding: 1rem 2rem;
		border-radius: 8px 8px 0 0;
		background: transparent;
		transition: all 0.3s ease;
		cursor: pointer;
		text-align: center;
		margin: 0;
	}

		.nav-tabs-custom .nav-link i {
			margin-right: 8px;
			color: var(--gray);
			transition: color 0.3s ease;
		}

		.nav-tabs-custom .nav-link:hover {
			color: var(--primary) !important;
			background: rgba(43,108,143,0.05);
		}

			.nav-tabs-custom .nav-link:hover i {
				color: var(--primary);
			}

		.nav-tabs-custom .nav-link.active {
			color: white !important;
			background: var(--primary) !important;
		}

			.nav-tabs-custom .nav-link.active i {
				color: white !important;
			}

		.nav-tabs-custom .nav-link:focus {
			outline: none;
			box-shadow: none;
		}

.tab-content {
	margin-top: 1.5rem;
}

.tab-pane {
	display: none;
}

	.tab-pane.active.show {
		display: block;
	}

/* ===== BUTTONS ===== */
.btn-booking {
	background: linear-gradient(135deg, var(--primary), var(--primary-dark));
	color: white !important;
	border: none;
	padding: 14px 30px;
	font-weight: 600;
	border-radius: 50px;
	transition: all 0.3s;
	width: 100%;
	text-decoration: none;
	display: inline-block;
	text-align: center;
	cursor: pointer;
}

	.btn-booking:hover {
		background: var(--primary-dark);
		color: white !important;
		transform: translateY(-2px);
		box-shadow: 0 5px 15px rgba(43,108,143,0.3);
	}

	.btn-booking.return {
		background: white;
		color: var(--primary) !important;
		border: 2px solid var(--primary);
	}

		.btn-booking.return:hover {
			background: var(--primary);
			color: white !important;
		}

.btn-route {
	background: transparent;
	border: 2px solid var(--primary);
	color: var(--primary);
	padding: 8px 20px;
	border-radius: 50px;
	font-weight: 600;
	text-decoration: none;
	display: inline-block;
	transition: all 0.3s;
	cursor: pointer;
}

	.btn-route:hover {
		background: var(--primary);
		color: white;
		transform: translateY(-2px);
		box-shadow: 0 5px 15px rgba(43,108,143,0.3);
	}

.btn-cta {
	background: white;
	color: var(--primary) !important;
	padding: 12px 30px;
	border-radius: 50px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: none;
	cursor: pointer;
}

	.btn-cta:hover {
		background: var(--secondary);
		transform: translateY(-2px);
		color: var(--dark) !important;
	}

.btn-cta-return {
	background: var(--secondary);
	color: var(--dark) !important;
}

	.btn-cta-return:hover {
		background: white;
		color: var(--primary) !important;
	}

.btn-outline-primary {
	border: 2px solid var(--primary);
	color: var(--primary);
	background: transparent;
	transition: all 0.3s ease;
}

	.btn-outline-primary:hover {
		background: var(--primary);
		color: white;
		transform: translateY(-2px);
	}

.btn-outline-secondary {
	border: 2px solid var(--gray);
	color: var(--gray);
	background: transparent;
	transition: all 0.3s ease;
}

	.btn-outline-secondary:hover {
		background: var(--gray);
		color: white;
		transform: translateY(-2px);
	}

/* ===== PRICE TABLE BOOKING BUTTONS ===== */
.booking-actions {
	display: flex;
	gap: 5px;
	justify-content: center;
	flex-wrap: wrap;
}

.btn-book-small {
	padding: 6px 12px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 0.85rem;
	border: none;
	transition: all 0.2s;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	cursor: pointer;
	white-space: nowrap;
}

	.btn-book-small.one-way {
		background: var(--primary);
		color: white;
	}

	.btn-book-small.return {
		background: white;
		color: var(--primary);
		border: 2px solid var(--primary);
	}

	.btn-book-small:hover {
		transform: translateY(-2px);
		box-shadow: 0 5px 10px rgba(0,0,0,0.1);
	}

	.btn-book-small.one-way:hover {
		background: var(--primary-dark);
	}

	.btn-book-small.return:hover {
		background: var(--primary);
		color: white;
	}

/* ===== FEATURES SECTION ===== */
.features-section {
	padding: 5rem 0;
	background: var(--gray-light);
}

.feature-card {
	background: white;
	border-radius: 16px;
	padding: 2rem;
	text-align: center;
	height: 100%;
	border: 1px solid #eef2f6;
	transition: all 0.3s;
}

	.feature-card:hover {
		transform: translateY(-10px);
		box-shadow: 0 20px 30px rgba(0,0,0,0.1);
		border-color: var(--primary);
	}

.feature-icon {
	width: 80px;
	height: 80px;
	background: rgba(43,108,143,0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	font-size: 2rem;
	color: var(--primary);
	transition: all 0.3s;
}

.feature-card:hover .feature-icon {
	background: var(--primary);
	color: white;
}

.feature-badge {
	background: var(--gray-light);
	padding: 5px 12px;
	border-radius: 50px;
	font-size: 0.9rem;
	color: var(--dark);
	border: 1px solid #dee2e6;
}

/* ===== CARDS ===== */
.route-card, .vehicle-card, .journey-card {
	border: none;
	border-radius: 16px;
	overflow: hidden;
	transition: all 0.3s;
	height: 100%;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

	.route-card:hover, .vehicle-card:hover {
		transform: translateY(-5px);
		box-shadow: 0 15px 30px rgba(0,0,0,0.1);
	}

	.route-card .card-body, .vehicle-card .card-body {
		padding: 1.5rem;
	}

	.route-card .card-title, .vehicle-card .card-title {
		color: var(--primary);
		font-weight: 600;
		margin-bottom: 0.75rem;
	}

/* ===== JOURNEY CARD ===== */
.journey-card {
	background: white;
	margin-bottom: 2rem;
}

/* ===== PRICE BADGES ===== */
.price-badge {
	display: inline-block;
	background: var(--secondary);
	color: var(--dark);
	padding: 5px 15px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 0.9rem;
	margin-bottom: 0.5rem;
}

.price-summary-card {
	background: var(--gray-light);
	border-radius: 12px;
	padding: 1.5rem;
}

/* ===== TABLES ===== */
.price-table-container {
	background: white;
	border-radius: 16px;
	padding: 1.5rem;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	margin: 2rem 0;
	overflow-x: auto;
}

.price-table {
	width: 100%;
	border-collapse: collapse;
	min-width: 600px;
}

	.price-table thead {
		background: var(--primary);
		color: white;
	}

	.price-table th {
		padding: 1rem;
		font-weight: 600;
		text-align: left;
	}

	.price-table td {
		padding: 1rem;
		border-bottom: 1px solid #eef2f6;
	}

	.price-table tbody tr:hover {
		background: rgba(43,108,143,0.05);
	}

.table-secondary {
	background-color: #f8f9fa !important;
	font-weight: 600;
}

	.table-secondary td {
		border-bottom: 2px solid #dee2e6;
	}

/* ===== FEATURE LIST ===== */
.feature-list {
	list-style: none;
	padding: 0;
}

	.feature-list li {
		padding: 0.75rem 0;
		border-bottom: 1px dashed #eef2f6;
		display: flex;
		align-items: center;
		gap: 10px;
	}

		.feature-list li:last-child {
			border-bottom: none;
		}

	.feature-list i {
		color: var(--accent);
		width: 24px;
	}

/* ===== ROUTE LINKS ===== */
.route-links-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 1rem;
}

.route-link {
	display: block;
	padding: 0.75rem 1rem;
	background: var(--gray-light);
	color: var(--primary);
	text-decoration: none;
	border-radius: 8px;
	transition: all 0.3s;
	font-weight: 500;
}

	.route-link:hover {
		background: var(--primary);
		color: white;
		transform: translateX(5px);
	}

	.route-link i {
		margin-right: 8px;
	}

/* ===== FAQ & ACCORDION ===== */
.faq-section {
	padding: 5rem 0;
}

.accordion-item {
	border-radius: 10px !important;
	margin-bottom: 12px;
	overflow: hidden;
	border: 1px solid #eef2f6 !important;
}

.accordion-button {
	padding: 1.25rem;
	font-weight: 500;
	background-color: white;
	color: var(--dark);
}

	.accordion-button:not(.collapsed) {
		background-color: #f0f7ff;
		color: var(--primary);
	}

	.accordion-button:focus {
		box-shadow: none;
		border-color: rgba(43,108,143,0.1);
	}

.accordion-body {
	padding: 1.5rem;
	background-color: #f9f9f9;
	line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.cta-section {
	background: linear-gradient(135deg, var(--primary), var(--primary-dark));
	color: white;
	padding: 3rem;
	border-radius: 16px;
	margin: 3rem 0;
}

.cta-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
	padding: 3rem 1rem; /* Adds 1rem left/right padding */
	border-bottom: 1px solid #eef2f6;
}

@media (min-width: 576px) {
	.content-section {
		padding: 3rem 1.5rem; /* Slightly larger on small devices */
	}
}

@media (min-width: 992px) {
	.content-section {
		padding: 3rem 0; /* Back to full width on desktop, if needed */
	}
}

.section-title {
	color: var(--primary);
	font-weight: 700;
	margin-bottom: 2rem;
	position: relative;
	padding-bottom: 0.75rem;
}

	.section-title::after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		width: 60px;
		height: 3px;
		background: var(--secondary);
		border-radius: 2px;
	}

.text-center.section-title::after {
	left: 50%;
	transform: translateX(-50%);
}

/* ===== FOOTER ===== */
.footer {
	background: var(--dark);
	color: white;
	padding: 4rem 0 2rem;
}

	.footer h4 {
		font-size: 1.2rem;
		font-weight: 600;
		margin-bottom: 1.5rem;
		position: relative;
		padding-bottom: 0.5rem;
	}

		.footer h4::after {
			content: '';
			position: absolute;
			bottom: 0;
			left: 0;
			width: 50px;
			height: 2px;
			background: var(--secondary);
		}

	.footer ul {
		list-style: none;
		padding: 0;
		margin: 0;
	}

		.footer ul li {
			margin-bottom: 0.75rem;
		}

			.footer ul li a {
				color: rgba(255,255,255,0.7);
				text-decoration: none;
				transition: all 0.2s;
			}

				.footer ul li a:hover {
					color: white;
					padding-left: 5px;
				}

.footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.1);
	margin-top: 3rem;
	padding-top: 2rem;
	text-align: center;
	color: rgba(255,255,255,0.6);
}

/* Footer badge styling */
.footer .badge {
	font-weight: 500;
	border-radius: 30px;
}

	.footer .badge.bg-primary {
		background-color: var(--primary) !important;
	}

	.footer .badge.bg-success {
		background-color: #28a745 !important;
	}

/* Footer logo hover effect */
.footer img[alt="NCyprusTaxi logo"]:hover {
	opacity: 0.8;
}

/* Footer improvements */
.footer-bottom .text-white-50 {
	color: rgba(255, 255, 255, 0.6) !important; /* matches existing footer-bottom color */
}

.footer-logo-link {
	display: inline-block;
	text-decoration: none;
	line-height: 0;
}

	.footer-logo-link img {
		transition: opacity 0.2s;
	}

	.footer-logo-link:hover img {
		opacity: 0.8;
	}

/* Ensure badges are clearly visible */
.footer .badge.bg-primary {
	background-color: var(--primary) !important;
	color: white !important;
}

.footer .badge.bg-success {
	background-color: #28a745 !important;
	color: white !important;
}

/* Border light for footer top */
.footer-bottom.border-light {
	border-color: rgba(255, 255, 255, 0.1) !important;
}
/* Increase footer bottom text size */
.footer-bottom .footer-text {
	font-size: 1rem; /* adjust as needed (1rem = 16px typical) */
	line-height: 1.5;
}

/* Optional: slightly larger on desktop */
@media (min-width: 768px) {
	.footer-bottom .footer-text {
		font-size: 1.05rem;
	}
}

/* Ensure copyright and logo align properly */
.footer-bottom .d-flex {
	flex-wrap: wrap;
	row-gap: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.footer-bottom .row {
		text-align: center !important;
	}

	.footer-bottom .col-md-6.text-md-end {
		text-align: center !important;
		margin-top: 1rem;
	}
}

/* ===== MODAL & FORMS ===== */
.modal-content {
	border-radius: 20px;
	border: none;
}

.modal-header {
	background: var(--primary);
	color: white;
	border-radius: 20px 20px 0 0;
	padding: 1.5rem;
}

	.modal-header .btn-close {
		filter: brightness(0) invert(1);
	}

.modal-body {
	padding: 2rem;
}

.form-group {
	position: relative;
	margin-bottom: 1rem;
}

	.form-group i {
		position: absolute;
		left: 15px;
		top: 50%;
		transform: translateY(-50%);
		color: var(--gray);
		z-index: 10;
	}

	.form-group input,
	.form-group textarea,
	.form-group select {
		padding-left: 45px;
		height: 50px;
		border-radius: 10px;
		border: 1px solid #eef2f6;
		width: 100%;
	}

	.form-group textarea {
		height: 100px;
		padding-top: 12px;
	}

		.form-group input:focus,
		.form-group textarea:focus,
		.form-group select:focus {
			border-color: var(--primary);
			box-shadow: 0 0 0 0.2rem rgba(43,108,143,0.25);
			outline: none;
		}

.form-label {
	font-weight: 600;
	color: var(--dark);
	margin-bottom: 0.5rem;
}

/* ===== BACK TO TOP ===== */
#backtotop {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 99;
	display: none;
}

	#backtotop a {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 50px;
		height: 50px;
		background: var(--primary);
		color: white;
		border-radius: 50%;
		text-decoration: none;
		transition: all 0.3s ease;
		box-shadow: 0 5px 15px rgba(0,0,0,0.2);
		cursor: pointer;
		border: none;
		outline: none;
	}

		#backtotop a:hover {
			background: var(--primary-dark);
			transform: translateY(-5px);
			box-shadow: 0 8px 20px rgba(0,0,0,0.3);
		}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.animate {
	opacity: 0;
	animation: fadeInUp 0.6s ease-out forwards;
}

/* ===== UTILITY & HONEYPOT CLASSES ===== */
.hidden-form-field, div[style*="display:none"] {
	display: none !important;
}

.visually-hidden {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
	outline: 3px solid #ffc107 !important;
	outline-offset: 2px !important;
	border-radius: 4px !important;
}

.skip-to-content {
	position: absolute;
	top: -40px;
	left: 0;
	background: var(--primary);
	color: white;
	padding: 8px 16px;
	text-decoration: none;
	z-index: 10000;
}

	.skip-to-content:focus {
		top: 0;
	}

/* ===== ROUTE FILTER (INDEX PAGE) ===== */
.routes-wrapper {
	transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
	position: relative;
}

.route-item {
	transition: opacity 0.4s ease, transform 0.4s ease;
	will-change: transform, opacity;
}

	.route-item.fade-out {
		opacity: 0;
		transform: scale(0.9);
	}

	.route-item.hidden {
		display: none !important;
	}

.airport-badge {
	display: inline-block;
	padding: 0.35em 0.65em;
	font-size: 0.75em;
	font-weight: 700;
	line-height: 1;
	border-radius: 0.375rem;
	color: #fff;
}

	.airport-badge.bg-primary {
		background-color: var(--primary) !important;
	}

	.airport-badge.bg-success {
		background-color: #198754 !important;
	}

	.airport-badge.bg-warning {
		background-color: #ffc107 !important;
		color: #000 !important;
	}

.nav-pills .nav-link {
	color: var(--dark);
	background-color: var(--gray-light);
	border-radius: 50px;
	padding: 0.5rem 1.5rem;
	margin: 0 0.25rem;
	font-weight: 600;
	transition: all 0.2s;
}

	.nav-pills .nav-link:hover, .nav-pills .nav-link.active {
		background-color: var(--primary) !important;
		color: white !important;
	}

/* ===== CONTACT PAGE DISTINCT STYLES ===== */
body.contact-page {
	--primary: #2b6c8f;
	--primary-dark: #1e4f6b;
	--secondary: #f5b041;
}

/* ----- Hero with diagonal cut ----- */
.contact-page .contact-hero {
	background: linear-gradient(135deg, rgba(43, 108, 143, 0.97), rgba(26, 67, 89, 0.99)), url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4MCIgaGVpZ2h0PSI4MCIgdmlld0JveD0iMCAwIDQwIDQwIj48cGF0aCBkPSJNMjAgMjBhMjAgMjAgMCAwIDEgMjAgMjAgMjAgMjAgMCAwIDEtNDAgMCAyMCAyMCAwIDAgMSAyMC0yMHoiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4wMykiLz48L3N2Zz4=');
	background-size: cover, 80px 80px;
	background-position: center;
	color: white;
	padding: 5rem 0 6rem;
	position: relative;
	margin-bottom: 2rem;
}

	.contact-page .contact-hero::after {
		content: '';
		position: absolute;
		bottom: -2px;
		left: 0;
		right: 0;
		height: 60px;
		background: linear-gradient(to right bottom, transparent 49%, white 50%);
		pointer-events: none;
	}

	.contact-page .contact-hero .breadcrumb {
		background: transparent;
		padding: 0;
		margin-bottom: 1rem;
	}

	.contact-page .contact-hero .breadcrumb-item a {
		color: rgba(255,255,255,0.8);
		text-decoration: none;
		transition: color 0.2s;
	}

		.contact-page .contact-hero .breadcrumb-item a:hover {
			color: white;
		}

	.contact-page .contact-hero .breadcrumb-item.active {
		color: white;
	}

	.contact-page .contact-hero .breadcrumb-item + .breadcrumb-item::before {
		color: rgba(255,255,255,0.5);
	}

/* ----- Enhanced Contact Cards ----- */
.contact-page .contact-card {
	background: white;
	border-radius: 24px;
	padding: 2.5rem 2rem;
	height: 100%;
	box-shadow: 0 20px 35px -8px rgba(0,0,0,0.1);
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	border: 1px solid rgba(43,108,143,0.1);
	position: relative;
	overflow: hidden;
}

	.contact-page .contact-card::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		height: 4px;
		background: linear-gradient(90deg, var(--primary), var(--secondary));
		transform: scaleX(0);
		transition: transform 0.4s ease;
	}

	.contact-page .contact-card:hover {
		transform: translateY(-8px);
		box-shadow: 0 30px 45px -12px rgba(43,108,143,0.25);
	}

		.contact-page .contact-card:hover::before {
			transform: scaleX(1);
		}

.contact-page .contact-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, rgba(43,108,143,0.1), rgba(43,108,143,0.05));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	font-size: 2.2rem;
	color: var(--primary);
	transition: all 0.4s ease;
	border: 2px dashed rgba(43,108,143,0.2);
}

.contact-page .contact-card:hover .contact-icon {
	background: var(--primary);
	color: white;
	border-color: transparent;
	transform: scale(1.1) rotate(5deg);
}

/* ----- Form Container ----- */
.contact-page .contact-form-container {
	background: white;
	border-radius: 30px;
	padding: 3rem;
	box-shadow: 0 30px 50px -20px rgba(0,0,0,0.2);
	border: 1px solid rgba(43,108,143,0.1);
	position: relative;
}

	.contact-page .contact-form-container::before {
		content: '';
		position: absolute;
		top: 20px;
		right: 20px;
		width: 100px;
		height: 100px;
		background: radial-gradient(circle, rgba(43,108,143,0.05) 0%, transparent 70%);
		border-radius: 50%;
		z-index: 0;
		pointer-events: none;
	}

	.contact-page .contact-form-container form {
		position: relative;
		z-index: 1;
	}

/* ----- Office Hours & Emergency ----- */
.contact-page .office-hours {
	background: linear-gradient(135deg, #f8fafc, white);
	border-radius: 20px;
	padding: 2rem;
	border: 1px solid rgba(43,108,143,0.15);
	box-shadow: 0 15px 25px -12px rgba(0,0,0,0.1);
}

	.contact-page .office-hours li {
		display: flex;
		justify-content: space-between;
		padding: 0.75rem 0;
		border-bottom: 1px dashed rgba(43,108,143,0.2);
		font-size: 1.1rem;
	}

		.contact-page .office-hours li:last-child {
			border-bottom: none;
		}

	.contact-page .office-hours .day {
		font-weight: 600;
		color: #343a40;
	}

	.contact-page .office-hours .time {
		color: var(--primary);
		font-weight: 500;
		background: rgba(43,108,143,0.1);
		padding: 0.2rem 1rem;
		border-radius: 50px;
	}

.contact-page .emergency-badge {
	background: linear-gradient(135deg, #dc3545, #bb2d3b);
	color: white;
	padding: 0.75rem 1.5rem;
	border-radius: 100px;
	display: inline-block;
	font-size: 1rem;
	margin-bottom: 1.5rem;
	font-weight: 600;
	box-shadow: 0 8px 15px -5px rgba(220,53,69,0.3);
	border: none;
}

/* ----- Social Links ----- */
.contact-page .social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	background: white;
	color: var(--primary);
	border-radius: 50%;
	font-size: 1.3rem;
	transition: all 0.3s ease;
	margin-right: 0.75rem;
	box-shadow: 0 5px 15px rgba(0,0,0,0.08);
	border: 2px solid rgba(43,108,143,0.1);
}

	.contact-page .social-link:hover {
		background: var(--primary);
		color: white;
		transform: translateY(-5px) scale(1.1);
		border-color: transparent;
	}

/* ----- FAQ Section ----- */
.contact-page .faq-section {
	background: linear-gradient(135deg, #f8fafc, white);
	padding: 4rem 0;
}

.contact-page .faq-item {
	background: white;
	border-radius: 16px;
	padding: 1.5rem;
	margin-bottom: 1rem;
	box-shadow: 0 5px 15px rgba(0,0,0,0.03);
	border: 1px solid rgba(43,108,143,0.1);
	transition: all 0.3s ease;
}

	.contact-page .faq-item:hover {
		box-shadow: 0 15px 30px -10px rgba(43,108,143,0.15);
		border-color: rgba(43,108,143,0.2);
	}

	.contact-page .faq-item h4 {
		color: var(--primary);
		font-size: 1.2rem;
		margin-bottom: 0.75rem;
		display: flex;
		align-items: center;
	}

	.contact-page .faq-item i {
		margin-right: 0.75rem;
	}

/* ----- Map Container (if used) ----- */
.contact-page .map-container {
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 20px 35px -8px rgba(0,0,0,0.15);
	margin: 2rem 0;
	border: 4px solid white;
}

/* responsive adjustments */
@media (max-width: 768px) {
	.contact-page .contact-hero {
		padding: 3rem 0 5rem;
	}

	.contact-page .contact-form-container {
		padding: 1.5rem;
	}

	.contact-page .office-hours li {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.3rem;
	}

	.contact-page .office-hours .time {
		align-self: flex-start;
	}
}

/* ===== PREMIUM JOURNEY TIMELINE ===== */
.journey-timeline {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0;
	position: relative;
	padding: 2rem 0;
}

.timeline-step {
	text-align: center;
	flex: 0 1 auto;
	position: relative;
	z-index: 2;
}

.icon-circle {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 10px;
	font-size: 1.4rem;
	background: #fff;
	box-shadow: 0 6px 16px rgba(0,0,0,.12);
	transition: all .3s ease;
	position: relative;
	z-index: 2;
}

.timeline-step:hover .icon-circle {
	transform: translateY(-4px) scale(1.05);
}

.timeline-label {
	font-weight: 600;
	font-size: .95rem;
	display: block;
}

.timeline-time {
	font-size: .8rem;
	color: #6c757d;
}

.timeline-connector {
	flex: 1;
	height: 3px;
	background: linear-gradient( 90deg, var(--primary), var(--secondary) );
	position: relative;
	border-radius: 10px;
	margin-top: 32px;
	z-index: 1;
}

.connector-time {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #fff;
	padding: 3px 10px;
	font-size: .75rem;
	font-weight: 600;
	border-radius: 20px;
	box-shadow: 0 2px 8px rgba(0,0,0,.15);
	white-space: nowrap;
	border: 1px solid #eee;
}

.timeline-connector::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient( 90deg, transparent, rgba(255,255,255,.6), transparent );
	animation: flow 3s infinite linear;
}

@keyframes flow {
	from {
		transform: translateX(-100%);
	}

	to {
		transform: translateX(100%);
	}
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
	.dropdown-toggle::after {
		margin-left: auto;
	}

	.navbar .nav-item:not(.dropdown) > .nav-link.active::after {
		display: none;
	}

	.navbar-nav {
		padding: 1rem 0;
	}
}

@media (max-width: 768px) {
	.hero {
		min-height: 500px;
	}

		.hero h1, .page-hero h1 {
			font-size: 2rem;
		}

	.page-hero {
		padding: 3rem 0 6rem;
	}

	.booking-card {
		margin-top: -50px !important;
		padding: 1.5rem;
	}

	.nav-tabs-custom {
		flex-direction: column;
		border-bottom: none;
	}

		.nav-tabs-custom .nav-link {
			border-radius: 8px !important;
			text-align: left;
		}

	.journey-stats {
		flex-direction: column;
	}

	.cta-buttons {
		flex-direction: column;
	}

	.btn-cta {
		width: 100%;
		justify-content: center;
	}

	.journey-timeline {
		flex-direction: column;
		align-items: center;
		gap: 1.8rem;
	}

	.timeline-connector {
		width: 3px;
		height: 60px;
		margin-top: 0;
		flex: none;
	}

	.connector-time {
		top: 50%;
		left: 45px;
		transform: translateY(-50%);
	}
}

@media (max-width: 576px) {
	.hero h1, .page-hero h1 {
		font-size: 1.8rem;
	}

	.btn-booking {
		padding: 12px 20px;
		font-size: 0.9rem;
	}

	.price-table {
		font-size: 0.85rem;
	}

		.price-table th, .price-table td {
			padding: 0.5rem;
		}
}

/* ---------- Thank You Page Specific Styles ---------- */
.thank-you-card {
	max-width: 800px;
	margin: 0 auto;
	background: white;
	border-radius: 20px;
	box-shadow: 0 15px 40px rgba(0,0,0,0.1);
	padding: 3rem 2rem;
}

.thank-you-icon {
	width: 100px;
	height: 100px;
	background: #28a745;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	margin: 0 auto 1.5rem;
	box-shadow: 0 10px 20px rgba(40,167,69,0.3);
}

.booking-details {
	background: #f8f9fa;
	border-radius: 12px;
	padding: 1.8rem;
	margin: 2rem 0;
	text-align: left;
	border-left: 5px solid #007bff;
}

	.booking-details h5 {
		color: #333;
		margin-bottom: 1.2rem;
		font-weight: 600;
	}

	.booking-details p {
		margin-bottom: 0.8rem;
		font-size: 1rem;
	}

	.booking-details i {
		width: 24px;
	}

.next-steps {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	justify-content: center;
	margin: 2.5rem 0 1.5rem;
}

.step-item {
	flex: 1 1 160px;
	background: #f8f9fa;
	border-radius: 12px;
	padding: 1.5rem 1rem;
	text-align: center;
	transition: transform 0.2s;
}

	.step-item:hover {
		transform: translateY(-5px);
		box-shadow: 0 10px 20px rgba(0,0,0,0.05);
	}

.step-icon {
	width: 60px;
	height: 60px;
	background: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	color: #007bff;
	margin: 0 auto 1rem;
	box-shadow: 0 5px 15px rgba(0,123,255,0.15);
}

.step-item h5 {
	font-size: 1.1rem;
	margin-bottom: 0.3rem;
	font-weight: 600;
}

.step-item .btn {
	border-radius: 30px;
	padding: 0.4rem 1rem;
	font-size: 0.9rem;
}

/* responsive */
@media (max-width: 576px) {
	.thank-you-card {
		padding: 2rem 1rem;
	}

	.next-steps {
		flex-direction: column;
		gap: 1rem;
	}

	.step-item {
		flex: 1 1 auto;
	}
}

.flatpickr-apply-btn {
	background: var(--primary);
	color: white;
	border: none;
	padding: 8px 12px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s;
}

	.flatpickr-apply-btn:hover {
		background: var(--primary-dark);
	}

/* ===== 404 ERROR PAGE ===== */
.error-page-section {
	background-color: var(--gray-light);
	min-height: 60vh;
}

.error-icon i {
	color: var(--primary);
	opacity: 0.8;
}

.error-page-section h1.display-1 {
	font-size: 6rem;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.error-page-section .badge:hover {
	background-color: var(--primary) !important;
	color: white !important;
	border-color: var(--primary) !important;
	transition: all 0.3s ease;
}
/* Mobile Mega Menu Optimization */
@media (max-width: 991.98px) {
	/* 1. Prevent the menu from being longer than the screen */
	.navbar-collapse {
		max-height: 85vh;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		padding-bottom: 30px;
	}

	/* 2. Make the links easier to tap (larger touch targets) */
	.dropdown-mega .list-unstyled li {
		margin-bottom: 5px;
	}

		.dropdown-mega .list-unstyled li a {
			display: block;
			padding: 12px 15px; /* Larger hit area for thumbs */
			background: rgba(0,0,0,0.02);
			border-radius: 6px;
			text-decoration: none;
			color: var(--primary);
			transition: background 0.2s;
		}

			.dropdown-mega .list-unstyled li a:active {
				background: var(--secondary);
				color: white;
			}

	/* 3. Style the section headings in the menu */
	.dropdown-mega h6 {
		margin-top: 20px;
		padding-left: 5px;
		border-left: 3px solid var(--secondary);
		font-weight: 700;
		color: var(--dark);
	}
}