/* ======================================================
GLOBAL
====================================================== */

html {
	scroll-behavior: smooth;
}

body {
	background: #f7f7f7;
	font-family: "Segoe UI", sans-serif;
	overflow-x: hidden;
}

/* Prevent overflow issues on all devices */
* {
	box-sizing: border-box;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

h1,
h2,
h3,
h4,
h5 {
	font-weight: 600;
}

.fullwidth-tile {
	width: 100%;
	padding: 70px 0;
}


/* ======================================================
SECTION TITLES
====================================================== */

.section-title {
	font-weight: 700;
	font-size: 34px;
}

.section-subtitle {
	color: #666;
	font-size: 16px;
	margin-top: 10px;
}


/* ======================================================
NAVBAR
====================================================== */

.navbar {
	background: #eeeded;
	padding: 10px 15px;
	border-bottom: 1px solid rgba(185, 131, 133, 0.05);
	position: relative;
	z-index: 1000;
	display: flex;
	align-items: center;
}

.navbar-brand {
	font-weight: 600;
	letter-spacing: .5px;
	color: #fff;
}

.navbar-brand img {
	height: 50px;
	width: auto;
	max-height: 50px;
}

.navbar-nav .nav-link {
	color: #000;
	margin-left: 15px;
	font-weight: 500;
}

.navbar-nav .nav-link:hover {
	color: #FFD854;
}


/* NAVBAR TOGGLER */

.navbar-toggler {
	border: none;
	background: transparent;
	padding: 8px;
	cursor: pointer;
}

.navbar-toggler:focus {
	outline: none;
	box-shadow: none;
}

.toggler-icon {
	display: block;
	width: 26px;
	height: 3px;
	background: black;
	margin: 5px 0;
	transition: 0.3s;
}

.toggler-icon:hover {
	background: #FFD854;
}

.navbar-toggler.active .toggler-icon:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler.active .toggler-icon:nth-child(2) {
	opacity: 0;
}

.navbar-toggler.active .toggler-icon:nth-child(3) {
	transform: rotate(-45deg) translate(6px, -6px);
}


/* ======================================================
HERO SECTION
====================================================== */

.hero-tile {
	background: url("../images/hero.png") center/cover no-repeat;
	background-size: cover;
	min-height: 700px;
	padding: 80px 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
	color: black;
}

.hero-tile::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 1;
	pointer-events: none;
}

.hero-tile .container {
	position: relative;
	z-index: 2;
}

.hero-title {
	font-size: 46px;
	font-weight: 700;
	text-shadow: 0 3px 10px rgba(0, 0, 0, .7);
}

.hero-text {
	font-size: 20px;
	color: black;
	max-width: 650px;
	margin: 15px auto;
	text-shadow: 0 3px 10px rgba(0, 0, 0, .7);
}

.hero-btn {
	padding: 12px 28px;
}


/* ======================================================
BOOKING FORM
====================================================== */

.form-tile {
	background: #f2f7ff;
}

.booking-card {
	background: white;
	padding: 35px;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.form-control {
	height: 48px;
	border-radius: 6px;
	background: #fafafa;
	border: 1px solid #ddd;
}

.btn-primary {
	background: black;
	border: none;
}

.btn-primary:hover {
	background: #333;
}

.flight-check-btn {
	font-size: x-small;
	/* font-size: 11px;
	padding: 6px 10px; */
}

/* ======================================================
PASSENGER FIELDS
====================================================== */

.passenger-row {
	display: flex;
	gap: 20px;
	margin-top: 25px;
	flex-wrap: wrap;
}

.passenger-field {
	flex: 1;
	min-width: 160px;
}

.passenger-field label {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 6px;
	display: block;
}


/* ======================================================
BOOKING WIZARD
====================================================== */

.wizard-progress {
	display: flex;
	background: #f4f6fb;
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 30px;
}

.wizard-step {
	flex: 1;
	text-align: center;
	padding: 16px;
	font-weight: 600;
	background: #f2f2f2;
	color: #777;
	cursor: pointer;
}

.wizard-step:hover {
	background: #e9edf7;
}

.wizard-step.active {
	background: white;
	color: #000;
	border-bottom: 3px solid black;
}

.form-step {
	display: none;
}

.form-step.active {
	display: block;
}


/* ======================================================
FEATURES SECTION (MODERN CARDS)
====================================================== */

.feature-card-modern {
	background: white;
	padding: 30px 25px;
	border-radius: 12px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
	transition: all .3s ease;
	height: 100%;
}

.feature-card-modern:hover {
	transform: translateY(-8px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon-circle {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #f4f4f4;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	margin: 0 auto 15px auto;
}

.feature-link {
	font-size: 14px;
	text-decoration: none;
	font-weight: 500;
}


/* ======================================================
VEHICLES SECTION
====================================================== */

.vehicle-card-modern {
	background: white;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	transition: .3s;
}

.vehicle-card-modern:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.vehicle-img-modern {
	width: 100%;
	height: 180px;
	object-fit: cover;
	background: #fafafa;
	display: block;
}

.vehicle-info {
	padding: 20px;
}

.vehicle-capacity {
	display: flex;
	justify-content: space-between;
	margin-top: 10px;
	font-size: 14px;
	color: #555;
}


/* ======================================================
REVIEWS SECTION
====================================================== */

.reviews-section {
	background: white;
}

.review-slider {
	position: relative;
	overflow: hidden;
	max-width: 1100px;
	margin: auto;
}

.review-track {
	display: flex;
	transition: transform .45s ease;
}

.review-card-modern {
	min-width: 280px;
	max-width: 320px;
	margin: 15px;
	background: white;
	padding: 30px 25px;
	border-radius: 14px;
	box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
	text-align: center;
	flex-shrink: 0;
	transition: .3s;
}

.review-card-modern:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 45px rgba(0, 0, 0, .15);
}

.review-avatar {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: #333;
	color: #fcfcfc;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 15px auto;
}

.review-avatar img {
	width: 60px;
	height: 40px;
	object-fit: contain;
}

.stars {
	color: #f4b400;
	font-size: 18px;
	margin-bottom: 12px;
}

.review-text {
	font-size: 15px;
	color: #444;
	line-height: 1.5;
}

.review-user {
	font-weight: 600;
	margin-top: 12px;
}

.review-user span {
	color: #777;
	font-weight: 400;
}

.review-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: #111;
	color: white;
	border: none;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 18px;
	z-index: 2;
}

.review-prev {
	left: -10px;
}

.review-next {
	right: -10px;
}


/* ======================================================
FOOTER
====================================================== */

.footer-tile {
	padding: 70px 2%;
	background: #f7f7f7;
}

.footer-container {
	display: grid;
	grid-template-columns: 140px 1fr;
	gap: 30px;
	max-width: 1100px;
	margin: auto;
	align-items: stretch;
}

/* LEFT LOGO */

.footer-left {
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer-logo {
	width: 200px;
	height: auto;
}

/* RIGHT CONTENT */

.footer-right {
	background: url("../images/footerBG.png") center/cover no-repeat;
	padding: 40px 50px;
	border-radius: 8px;
	text-align: center;
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.footer-right h3 {
	font-size: 26px;
	font-weight: 600;
	margin-bottom: 10px;
}

.footer-contact {
	font-size: 15px;
	margin-bottom: 18px;
}

.footer-links {
	font-size: 15px;
}

.footer-links a {
	color: #fff;
	margin: 0 8px;
	font-weight: 500;
}

.footer-links a:hover {
	text-decoration: underline;
}

/* ======================================================
TOAST MESSAGES
====================================================== */

.toast {
	box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
	border-radius: 8px;
	font-size: 14px;
}


/* ======================================================
LOCATION SEARCH
====================================================== */

.location-wrapper {
	position: relative;
}

.location-results {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: white;
	border: 1px solid #ddd;
	border-radius: 6px;
	max-height: 220px;
	overflow-y: auto;
	z-index: 9999;
	display: none;
}

.result-item {
	padding: 10px;
	cursor: pointer;
	font-size: 14px;
}

.result-item:hover {
	background: #f2f2f2;
}

.form-check-label a {
	pointer-events: auto;
}