/* ============================================================
   UMRAH EMAAN HOLIDAYS — PREMIUM BLUE THEME v3
   app.css — Complete design system
   ============================================================ */

:root {
	/* ── Brand Palette ── */
	--primary: #005aa9;
	--primary-dark: #005aa9;
	--primary-mid: #2A5FAD;
	--primary-light: #e8eef8;
	--primary-xlight: #f0f4fb;

	/* ── Gold / Orange accent (CTA only) ── */
	--gold: #fccb08;
	--gold-dark: #fdbe00;
	--gold-light: #FBE8CE;
	--gold-mid: #F5A754;

	/* ── Neutrals ── */
	--ink: #0D1B2E;
	--muted: #5B6B80;
	--border: #D6E0EE;
	--soft: #F5F7FB;
	--beige: #F7F3EC;
	--white: #fff;

	/* ── Shadows ── */
	--shadow: 0 20px 60px rgba(15, 40, 100, .10);
	--shadow-sm: 0 4px 18px rgba(15, 40, 100, .08);
	--shadow-hover: 0 24px 55px rgba(15, 40, 100, .16);

	/* ── Shape ── */
	--radius: 24px;

	/* ── Package UI tokens ── */
	--pkg-font: 'Poppins', 'Inter', 'DM Sans', sans-serif;
	--pkg-primary: #00b9f0;
	--pkg-primary-dark: #00b9f0;
	--pkg-primary-light: #e8eef8;
	--pkg-gold: #fccb08;
	--pkg-gold-light: #FBE8CE;
	--pkg-card-radius: 18px;
	--pkg-shadow: 0 4px 24px rgba(15, 40, 100, .09);
	--pkg-shadow-hover: 0 16px 48px rgba(15, 40, 100, .18);
	--pkg-transition: .28s cubic-bezier(.25, .46, .45, .94);

	/* Legacy aliases so older partials don't break */
	--emerald: #005aa9;
	--emerald-2: #005aa9;
	--emerald-3: #e8eef8;
}

* {
	box-sizing: border-box
}

html {
	scroll-behavior: smooth
}

body {
	font-family: 'DM Sans', sans-serif;
	color: var(--ink);
	background: #fff;
	overflow-x: hidden;
}

h1,
h2,
h3 {
	font-family: 'Playfair Display', serif;
	letter-spacing: -.025em;
}

h2 {
	font-size: clamp(2.1rem, 4vw, 3.6rem);
	line-height: 1.08;
}

a {
	text-decoration: none;
	color: inherit
}

/* ── Topbar ─────────────────────────────────────────────── */
.topbar {
	font-size: .76rem;
	background: #0B2250;
	color: #c8d8f4;
	padding: .48rem 0;
}

.topbar i {
	color: var(--gold-mid)
}

/* ── Navbar ──────────────────────────────────────────────── */
.premium-nav {
	background: rgba(255, 255, 255, .95);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid rgba(31, 75, 143, .10);
	padding: .65rem 0;
	transition: box-shadow .3s;
}

.premium-nav.scrolled {
	box-shadow: 0 4px 22px rgba(15, 40, 100, .10);
}

.navbar-logo-img {
	height: 52px;
	width: auto;
	object-fit: contain;
}

.navbar-brand {
	display: flex;
	align-items: center;
	gap: .6rem;
	color: var(--primary) !important;
	font-size: 1rem;
	letter-spacing: .12em;
	line-height: .9;
}

.navbar-brand small {
	display: block;
	font-size: .55rem;
	letter-spacing: .35em;
	margin-top: .35rem;
}

.brand-mark {
	width: 43px;
	height: 43px;
	border-radius: 14px;
	background: var(--primary);
	display: grid;
	place-items: center;
	color: var(--gold-light);
	font-size: 1.1rem;
}

.nav-link {
	color: #2C4266 !important;
	font-weight: 600;
	font-size: .92rem;
	position: relative;
	padding-bottom: .2rem !important;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--gold);
	border-radius: 2px;
	transform: scaleX(0);
	transition: transform .22s;
}

.nav-link:hover::after,
.nav-link.active::after {
	transform: scaleX(1)
}

.nav-link:hover {
	color: var(--primary) !important
}

.nav-link.active {
	color: var(--primary) !important
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
	border-radius: 12px;
	font-weight: 700;
	padding: .72rem 1.15rem;
	transition: all .22s ease;
}

.btn-primary-premium {
	background: var(--primary);
	color: #fff;
	border: 1px solid var(--primary);
	box-shadow: 0 8px 22px rgba(31, 75, 143, .22);
}

.btn-primary-premium:hover {
	background: var(--primary-dark);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 14px 30px rgba(31, 75, 143, .28);
}

.btn-gold {
	background: var(--gold);
	color: #fff;
	border: none;
	box-shadow: 0 8px 22px rgba(224, 123, 26, .28);
}

.btn-gold:hover {
	background: var(--gold-dark);
	color: #fff;
	transform: translateY(-2px);
}

.btn-ghost {
	color: var(--primary)
}

.btn-outline-premium {
	border: 1.5px solid var(--primary);
	color: var(--primary);
	background: transparent;
}

.btn-outline-premium:hover {
	background: var(--primary);
	color: #fff;
}

.login-pill {
	border-radius: 50px;
	font-size: .85rem;
	padding: .55rem 1.1rem;
}

/* ── Eyebrow / Labels ────────────────────────────────────── */
.eyebrow {
	text-transform: uppercase;
	letter-spacing: .18em;
	font-size: .72rem;
	font-weight: 700;
	color: var(--primary-mid);
	display: inline-flex;
	gap: .5rem;
	align-items: center;
}

.text-gold {
	color: var(--gold-mid) !important
}

/* ── Hero Section ────────────────────────────────────────── */
.hero {
	position: relative;
	min-height: 100vh;
	background: url('https://images.unsplash.com/photo-1585938389612-a552a28d6914?auto=format&fit=crop&w=2000&q=90') center/cover no-repeat;
	color: #fff;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(118deg, rgba(11, 34, 80, .95) 0%, rgba(11, 34, 80, .82) 40%, rgba(11, 34, 80, .45) 70%, transparent 100%),
		linear-gradient(0deg, rgba(8, 26, 65, .70) 0%, transparent 55%);
}

.hero-content-wrap {
	position: relative;
	z-index: 2;
	flex: 1;
	display: flex;
	align-items: center;
	padding: 7rem 0 5rem;
}

.min-vh-75 {
	min-height: 680px
}

.hero-copy {
	position: relative;
	z-index: 2;
	padding-bottom: 2rem;
}

.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	background: rgba(255, 255, 255, .12);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, .2);
	border-radius: 50px;
	padding: .4rem 1rem;
	font-size: .75rem;
	font-weight: 600;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--gold-mid);
	margin-bottom: 1.5rem;
}

.hero h1 {
	font-size: clamp(2.8rem, 5.5vw, 5.5rem);
	line-height: .96;
	max-width: 860px;
	margin: 0 0 1.4rem;
	color: #fff;
}

.hero-copy>p {
	font-size: 1.12rem;
	line-height: 1.75;
	color: rgba(255, 255, 255, .78);
	max-width: 560px;
	margin-bottom: 2rem;
}

.hero-cta-group {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	margin-bottom: 2.5rem;
}

.btn-hero-primary {
	background: var(--gold);
	color: #fff;
	border: none;
	border-radius: 14px;
	padding: .9rem 2rem;
	font-size: 1rem;
	font-weight: 700;
	box-shadow: 0 12px 32px rgba(224, 123, 26, .35);
	transition: all .22s;
	display: inline-flex;
	align-items: center;
	gap: .5rem;
}

.btn-hero-primary:hover {
	background: var(--gold-dark);
	color: #fff;
	transform: translateY(-3px);
	box-shadow: 0 18px 42px rgba(224, 123, 26, .45);
}

.btn-hero-outline {
	background: rgba(255, 255, 255, .12);
	color: #fff;
	border: 1.5px solid rgba(255, 255, 255, .45);
	border-radius: 14px;
	padding: .9rem 2rem;
	font-size: 1rem;
	font-weight: 600;
	backdrop-filter: blur(10px);
	transition: all .22s;
	display: inline-flex;
	align-items: center;
	gap: .5rem;
}

.btn-hero-outline:hover {
	background: rgba(255, 255, 255, .22);
	color: #fff;
	border-color: rgba(255, 255, 255, .7);
	transform: translateY(-2px);
}

/* Trust bar */
.trust-row {
	display: flex;
	gap: 1.2rem;
	align-items: center;
}

.avatar-stack {
	display: flex
}

.avatar-stack span {
	width: 37px;
	height: 37px;
	border-radius: 50%;
	background: var(--primary-mid);
	color: #fff;
	border: 3px solid rgba(255, 255, 255, .4);
	display: grid;
	place-items: center;
	font-size: .7rem;
	margin-left: -9px;
}

.avatar-stack span:first-child {
	margin: 0
}

.trust-row .stars {
	color: var(--gold-mid)
}

.trust-row small {
	color: rgba(255, 255, 255, .7)
}

/* Hero art / floating cards */
.hero-art {
	padding: 3rem 1rem 5rem 3rem
}

.arch-frame {
	position: relative;
	height: 570px;
	overflow: visible;
}

.arch-frame:before {
	content: "";
	position: absolute;
	inset: -15px 15px 15px -15px;
	border: 1px solid rgba(224, 123, 26, .55);
	border-radius: 240px 240px 30px 30px;
}

.arch-frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 230px 230px 28px 28px;
	box-shadow: var(--shadow);
	position: relative;
}

.floating-card {
	position: absolute;
	background: rgba(255, 255, 255, .92);
	backdrop-filter: blur(12px);
	padding: .85rem 1rem;
	border: 1px solid rgba(255, 255, 255, .8);
	border-radius: 16px;
	display: flex;
	gap: .7rem;
	align-items: center;
	box-shadow: 0 18px 40px rgba(15, 40, 100, .18);
	animation: float 5s ease-in-out infinite;
}

.floating-card i {
	font-size: 1.5rem;
	color: var(--gold);
}

.floating-card span {
	display: flex;
	flex-direction: column
}

.floating-card small {
	color: var(--muted)
}

.float-one {
	left: -55px;
	top: 23%
}

.float-two {
	right: -40px;
	bottom: 15%;
	animation-delay: -2s
}

@keyframes float {
	50% {
		transform: translateY(-10px)
	}
}

/* Search deck */
.search-deck {
	position: absolute;
	z-index: 4;
	bottom: -44px;
	left: 12px;
	right: 12px;
	background: rgba(255, 255, 255, .96);
	backdrop-filter: blur(18px);
	border: 1px solid rgba(255, 255, 255, .9);
	border-radius: 22px;
	box-shadow: 0 24px 55px rgba(15, 40, 100, .15);
	padding: .7rem;
	display: grid;
	grid-template-columns: 1.1fr 1fr 1fr .9fr auto;
}

.search-field {
	position: relative;
	border-right: 1px solid var(--border);
	padding: .5rem 1rem .5rem 2.6rem;
}

.search-field>i {
	position: absolute;
	left: .85rem;
	top: 1.35rem;
	color: var(--gold);
}

.search-field label {
	display: block;
	font-size: .68rem;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--muted);
	font-weight: 700;
}

.search-field select,
.search-field input {
	border: 0;
	background: transparent;
	width: 100%;
	padding: .35rem 0;
	font-weight: 700;
	color: var(--ink);
	outline: 0;
}

.btn-search {
	background: var(--primary);
	color: #fff;
	border-radius: 16px;
	padding: 0 1.6rem;
	border: none;
}

.btn-search:hover {
	background: var(--primary-dark);
	color: #fff;
}

/* ── Section Utilities ───────────────────────────────────── */
.section-pad {
	padding: 7rem 0
}

.bg-soft {
	background: var(--soft)
}

.bg-beige {
	background: var(--beige)
}

.section-heading {
	display: flex;
	justify-content: space-between;
	align-items: end;
	margin-bottom: 2.5rem;
}

.section-heading h2 {
	margin: .7rem 0
}

.section-heading p,
.section-title-narrow p,
.lead-muted {
	color: var(--muted);
	font-size: 1.05rem;
}

.text-link {
	font-weight: 700;
	color: var(--primary);
	border-bottom: 1px solid rgba(31, 75, 143, .3);
	padding-bottom: .25rem;
	transition: .2s;
}

.text-link:hover {
	color: var(--primary-dark)
}

/* ── Package Grid (homepage featured) ───────────────────── */
.package-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.package-grid-two {
	grid-template-columns: repeat(2, 1fr)
}

.package-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--pkg-card-radius);
	overflow: hidden;
	box-shadow: var(--pkg-shadow);
	transition: var(--pkg-transition);
}

.package-card:hover {
	transform: translateY(-7px);
	box-shadow: var(--pkg-shadow-hover);
}

/* ── New Package Card — Full Detail Layout ───────────────── */
.pkg-card-new {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: var(--pkg-shadow);
	transition: var(--pkg-transition);
	position: relative;
}

.pkg-card-new:hover {
	transform: translateY(-5px);
	box-shadow: var(--pkg-shadow-hover);
}

/* Header stripe */
.pkg-card-header {
	background: linear-gradient(120deg, var(--primary) 0%, var(--primary-mid) 100%);
	color: #fff;
	padding: 1.1rem 1.3rem .9rem;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.pkg-card-number {
	font-size: .65rem;
	font-weight: 700;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .7);
	margin-bottom: .2rem;
}

.pkg-card-name {
	font-family: var(--pkg-font);
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.2;
	color: #fff;
	margin: 0;
}

.pkg-days-badge {
	background: var(--gold);
	color: #fff;
	border-radius: 10px;
	padding: .35rem .75rem;
	font-size: .78rem;
	font-weight: 700;
	white-space: nowrap;
	flex-shrink: 0;
}

/* Dates + Flight row */
.pkg-dates-row {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: .5rem;
	padding: .9rem 1.3rem;
	border-bottom: 1px solid var(--border);
	background: var(--soft);
}

.pkg-date-item {
	display: flex;
	flex-direction: column;
}

.pkg-date-item small {
	font-size: .6rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--muted);
}

.pkg-date-item b {
	font-size: .82rem;
	color: var(--ink);
}

.pkg-flight-center {
	display: flex;
	flex-direction: column;
	align-items: center;
	color: var(--primary);
}

.pkg-flight-center i {
	font-size: 1.1rem
}

.pkg-flight-center span {
	font-size: .6rem;
	color: var(--muted);
}

/* Flight info row */
.pkg-flight-row {
	display: flex;
	align-items: center;
	gap: .7rem;
	padding: .75rem 1.3rem;
	border-bottom: 1px solid var(--border);
	font-size: .8rem;
}

.pkg-airline-badge {
	background: var(--primary-light);
	color: var(--primary);
	border-radius: 8px;
	padding: .25rem .55rem;
	font-size: .7rem;
	font-weight: 700;
}

.pkg-flight-nums {
	display: flex;
	flex-direction: column;
	font-size: .75rem;
}

.pkg-flight-nums small {
	color: var(--muted);
	font-size: .63rem;
}

.pkg-baggage {
	margin-left: auto;
	display: flex;
	align-items: center;
	gap: .3rem;
	font-size: .73rem;
	color: var(--muted);
}

.pkg-baggage i {
	color: var(--primary)
}

/* Hotels section */
.pkg-hotels {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	border-bottom: 1px solid var(--border);
}

.pkg-hotel-item {
	padding: .8rem 1rem;
	display: flex;
	flex-direction: column;
	gap: .15rem;
}

.pkg-hotel-item:first-child {
	border-right: 1px solid var(--border);
}

.pkg-hotel-label {
	font-size: .58rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .12em;
	color: var(--primary);
	display: flex;
	align-items: center;
	gap: .3rem;
}

.pkg-hotel-name {
	font-size: .82rem;
	font-weight: 700;
	color: var(--ink);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.pkg-hotel-meta {
	font-size: .68rem;
	color: var(--muted);
	display: flex;
	gap: .5rem;
	align-items: center;
}

.pkg-hotel-meta span {
	background: var(--primary-light);
	color: var(--primary);
	border-radius: 5px;
	padding: .1rem .35rem;
	font-size: .6rem;
	font-weight: 600;
}

/* Pricing section */
.pkg-prices {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-bottom: 1px solid var(--border);
}

.pkg-price-cell {
	padding: .75rem .6rem;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .12rem;
	border-right: 1px solid var(--border);
}

.pkg-price-cell:last-child {
	border-right: 0
}

.pkg-price-label {
	font-size: .6rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: var(--muted);
}

.pkg-price-amount {
	font-size: .88rem;
	font-weight: 700;
	color: var(--primary);
	font-family: var(--pkg-font);
}

/* Actions */
.pkg-card-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: .8rem;
	padding: .9rem 1.1rem;
}

.btn-pkg-book {
	background: var(--gold);
	color: #fff;
	border: none;
	border-radius: 10px;
	padding: .7rem;
	font-size: .82rem;
	font-weight: 700;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .4rem;
	transition: all .22s;
}

.btn-pkg-book:hover {
	background: var(--gold-dark);
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 8px 20px rgba(224, 123, 26, .3);
}

.btn-pkg-whatsapp {
	background: var(--primary-light);
	color: var(--primary);
	border: 1.5px solid var(--primary);
	border-radius: 10px;
	padding: .7rem;
	font-size: .82rem;
	font-weight: 700;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .4rem;
	transition: all .22s;
}

.btn-pkg-whatsapp:hover {
	background: var(--primary);
	color: #fff;
	transform: translateY(-1px);
}

/* Wishlist */
.wishlist-btn,
.row-wishlist {
	border: 0;
	background: rgba(255, 255, 255, .91);
	color: var(--primary);
	width: 38px;
	height: 38px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	transition: .2s;
	position: absolute;
	right: 14px;
	top: 14px;
}

.wishlist-btn:hover,
.wishlist-btn.saved {
	background: var(--primary);
	color: #fff;
	transform: scale(1.07);
}

/* ── Old card sub-styles (kept for compatibility) ────────── */
.package-visual {
	height: 230px;
	position: relative;
	overflow: hidden
}

.package-visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .6s
}

.package-card:hover .package-visual img {
	transform: scale(1.05)
}

.card-badges {
	position: absolute;
	top: 14px;
	left: 14px;
	display: flex;
	gap: .4rem
}

.card-badges span {
	padding: .42rem .65rem;
	border-radius: 100px;
	font-size: .68rem;
	font-weight: 700;
	box-shadow: 0 4px 14px rgba(0, 0, 0, .12)
}

.badge-featured {
	background: var(--gold-light);
	color: #48370f
}

.badge-limited {
	background: #9e382d;
	color: #fff
}

.duration-pill {
	position: absolute;
	bottom: 13px;
	right: 13px;
	background: rgba(8, 30, 70, .83);
	color: #fff;
	padding: .4rem .7rem;
	border-radius: 10px;
	font-size: .75rem;
}

.package-body {
	padding: 1.25rem
}

.package-code {
	font-size: .69rem;
	letter-spacing: .12em;
	color: var(--muted)
}

.rating {
	font-size: .8rem;
	font-weight: 700
}

.rating small {
	font-weight: 400;
	color: var(--muted)
}

.package-body h3 {
	font-size: 1.45rem;
	margin: .25rem 0 1rem
}

.package-body h3 a:hover {
	color: var(--primary-mid)
}

.flight-strip {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	background: var(--soft);
	border-radius: 14px;
	padding: .75rem;
	margin-bottom: .85rem;
}

.airport {
	display: flex;
	flex-direction: column
}

.airport b {
	font-size: 1.05rem;
	text-transform: uppercase
}

.airport span {
	font-size: .65rem;
	color: var(--muted)
}

.flight-line {
	text-align: center;
	position: relative;
	color: var(--primary);
}

.flight-line:before {
	content: "";
	height: 1px;
	background: var(--border);
	position: absolute;
	left: 10%;
	right: 10%;
	top: 8px;
}

.flight-line i {
	background: var(--soft);
	position: relative;
	padding: .25rem
}

.flight-line span {
	display: block;
	font-size: .62rem;
	color: var(--muted);
	margin-top: .25rem
}

.package-date {
	display: flex;
	gap: .7rem;
	align-items: center;
	font-size: .78rem;
	margin: .8rem 0
}

.package-date i {
	color: var(--gold)
}

.hotel-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: .55rem
}

.hotel-grid>div {
	display: flex;
	gap: .5rem;
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: .65rem;
	min-width: 0
}

.hotel-grid i {
	color: var(--gold)
}

.hotel-grid span {
	min-width: 0;
	display: flex;
	flex-direction: column
}

.hotel-grid small,
.hotel-grid em {
	font-size: .6rem;
	color: var(--muted);
	font-style: normal
}

.hotel-grid b {
	font-size: .7rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}

.feature-pills {
	display: flex;
	gap: .35rem;
	flex-wrap: wrap;
	margin: 1rem 0
}

.feature-pills span {
	font-size: .64rem;
	color: #3a5282;
	background: var(--primary-light);
	border-radius: 7px;
	padding: .3rem .45rem
}

.availability>div:first-child {
	display: flex;
	justify-content: space-between;
	font-size: .65rem;
	color: var(--muted)
}

.availability .progress {
	height: 5px;
	margin-top: .35rem;
	background: var(--border)
}

.availability .progress-bar {
	background: linear-gradient(90deg, var(--primary), var(--gold))
}

.package-footer {
	border-top: 1px solid var(--border);
	margin-top: 1rem;
	padding-top: 1rem;
	display: flex;
	justify-content: space-between;
	align-items: end;
	gap: .5rem
}

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

.price small {
	font-size: .63rem;
	color: var(--muted)
}

.price strong {
	font-size: 1.15rem
}

.price span {
	font-size: .62rem;
	color: var(--primary-mid)
}

.card-actions {
	display: flex;
	gap: .4rem;
	align-items: center
}

.card-actions .share-btn {
	border: 1px solid var(--border);
	flex: none
}

.card-actions .btn {
	font-size: .75rem;
	padding: .65rem .8rem
}

/* ── Stats Section ───────────────────────────────────────── */
.stats-section {
	background: linear-gradient(120deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-mid) 100%);
	color: #fff;
	padding: 3.5rem 0;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr)
}

.stats-grid>div {
	text-align: center;
	border-right: 1px solid rgba(255, 255, 255, .15);
	padding: 1rem;
}

.stats-grid>div:last-child {
	border: 0
}

.stats-grid strong {
	font: 3rem 'Playfair Display';
	display: block;
	color: var(--gold-mid)
}

.stats-grid span {
	font-size: .78rem;
	text-transform: uppercase;
	letter-spacing: .12em;
	color: rgba(255, 255, 255, .7)
}

.section-title-narrow {
	max-width: 650px;
	margin: 0 auto 3rem
}

/* ── Testimonials ────────────────────────────────────────── */
.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.3rem
}

.testimonial {
	margin: 0;
	padding: 2rem;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 20px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, .035);
	position: relative;
}

.quote-mark {
	font: 5rem 'Playfair Display';
	position: absolute;
	right: 1.5rem;
	top: .5rem;
	color: var(--primary-light)
}

.stars,
.rating i {
	color: var(--gold)
}

.testimonial p {
	font: 1.05rem/1.7 'Playfair Display';
	margin: 1rem 0 1.5rem
}

.testimonial footer {
	display: flex;
	gap: .7rem;
	align-items: center
}

.testimonial footer>span {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--primary);
	color: #fff;
	display: grid;
	place-items: center
}

.testimonial footer div {
	display: flex;
	flex-direction: column
}

.testimonial footer small {
	color: var(--muted)
}

/* ── FAQ Accordion ───────────────────────────────────────── */
.premium-accordion .accordion-item {
	border: 0;
	border-bottom: 1px solid var(--border);
	background: transparent
}

.premium-accordion .accordion-button {
	font-weight: 700;
	background: transparent;
	padding: 1.3rem 0;
	box-shadow: none
}

.premium-accordion .accordion-button:not(.collapsed) {
	color: var(--primary)
}

.premium-accordion .accordion-body {
	padding: 0 0 1.4rem;
	color: var(--muted)
}

/* ── Why Section ─────────────────────────────────────────── */
.why-section h2 {
	margin: .8rem 0 1.25rem
}

.why-visual {
	position: relative;
	padding: 0 2rem 2rem 0
}

.why-visual>img {
	width: 100%;
	height: 620px;
	object-fit: cover;
	border-radius: 220px 220px 30px 30px
}

.experience-seal {
	position: absolute;
	right: -15px;
	top: 25%;
	width: 145px;
	height: 145px;
	border-radius: 50%;
	background: var(--gold-light);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	border: 8px solid #fff;
	box-shadow: var(--shadow);
}

.experience-seal strong {
	font: 3rem 'Playfair Display';
	color: var(--primary)
}

.experience-seal span {
	font-size: .7rem;
	text-transform: uppercase;
	letter-spacing: .08em
}

.quote-card {
	position: absolute;
	left: -25px;
	bottom: 0;
	background: var(--primary);
	color: #fff;
	padding: 1.2rem 1.5rem;
	border-radius: 18px;
	font: 1.25rem 'Playfair Display';
	box-shadow: var(--shadow);
}

.quote-card small {
	display: block;
	font: .7rem 'DM Sans';
	color: rgba(255, 255, 255, .65);
	margin-top: .4rem
}

.benefit-list {
	margin-top: 2rem
}

.benefit {
	display: flex;
	gap: 1rem;
	padding: 1.3rem 0;
	border-bottom: 1px solid var(--border)
}

.benefit>i {
	width: 48px;
	height: 48px;
	display: grid;
	place-items: center;
	border-radius: 14px;
	background: var(--primary-light);
	color: var(--primary);
	font-size: 1.3rem;
	flex: none;
}

.benefit h4 {
	font-size: 1rem;
	font-weight: 700
}

.benefit p {
	color: var(--muted);
	margin: 0;
	font-size: .9rem
}

/* ── Newsletter ──────────────────────────────────────────── */
.newsletter {
	background: #0B2250;
	color: #fff;
	padding: 4.5rem 0
}

.newsletter-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem
}

.newsletter h2 {
	font-size: 2.5rem;
	margin: .5rem 0
}

.newsletter p {
	color: #a0b8d8
}

.newsletter-form {
	display: flex;
	background: #fff;
	border-radius: 15px;
	padding: .4rem;
	min-width: 430px;
}

.newsletter-form input {
	border: 0;
	outline: 0;
	flex: 1;
	padding: 0 1rem
}

/* ── Site Footer ─────────────────────────────────────────── */
.site-footer {
	background: #06122B;
	color: #c8d8f0
}

.footer-cta {
	background: linear-gradient(120deg, var(--primary-dark), var(--primary));
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 24px;
	padding: 2.5rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transform: translateY(-1px);
}

.footer-cta h2 {
	font-size: 2.5rem;
	margin: .5rem 0
}

.footer-cta p {
	margin: 0;
	color: rgba(255, 255, 255, .7)
}

.footer-brand {
	color: #fff !important
}

.footer-logo-img {
	height: 44px;
	width: auto;
	object-fit: contain;
	filter: brightness(0) invert(1);
	opacity: .9
}

.site-footer h6 {
	text-transform: uppercase;
	letter-spacing: .15em;
	color: var(--gold-mid);
	font-size: .7rem;
}

.site-footer .col-6 a {
	display: block;
	color: #8aaad4;
	margin: .6rem 0;
	font-size: .88rem
}

.site-footer .col-6 a:hover {
	color: #fff
}

.footer-copy {
	max-width: 380px;
	color: #7890b8
}

.footer-bottom {
	padding: 1.3rem 0;
	border-top: 1px solid rgba(255, 255, 255, .08);
	display: flex;
	justify-content: space-between;
	color: #5a7299;
	font-size: .75rem;
}

/* ── Page Hero (inner pages) ─────────────────────────────── */
.page-hero {
	background: linear-gradient(120deg, var(--primary-light), var(--soft));
	padding: 6rem 0 5rem;
}

.page-hero.compact h1 {
	font-size: clamp(2.8rem, 5vw, 5rem);
	max-width: 850px;
	margin: .7rem 0
}

.page-hero p {
	color: var(--muted);
	font-size: 1.1rem
}

/* ── Packages Page ───────────────────────────────────────── */
.packages-page {
	padding-top: 4rem
}

.filter-panel {
	position: sticky;
	top: 100px;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 18px;
	padding: 1.25rem;
}

.filter-top {
	display: flex;
	justify-content: space-between;
	align-items: center
}

.filter-top h4 {
	font: 1.3rem 'Playfair Display';
	margin: 0
}

.filter-top button {
	border: 0;
	background: none;
	color: var(--primary);
	font-size: .75rem
}

.filter-group {
	padding: 1.1rem 0;
	border-bottom: 1px solid var(--border)
}

.filter-group>label {
	font-size: .76rem;
	font-weight: 700;
	margin-bottom: .65rem;
	display: flex;
	justify-content: space-between
}

.filter-group .form-control,
.filter-group .form-select {
	font-size: .85rem;
	border-color: var(--border)
}

.check-list {
	display: grid;
	gap: .45rem
}

.check-list label {
	font-size: .82rem;
	color: var(--muted)
}

.check-list input {
	accent-color: var(--primary);
	margin-right: .4rem
}

.form-range::-webkit-slider-thumb {
	background: var(--primary)
}

.results-toolbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.25rem
}

.results-toolbar>div {
	display: flex;
	flex-direction: column
}

.results-toolbar>div span {
	font-weight: 700
}

.results-toolbar small {
	color: var(--muted)
}

.results-toolbar select {
	width: 190px
}

.mobile-filter-bar {
	display: none
}

.skeleton-card {
	height: 480px;
	border-radius: 20px;
	background: linear-gradient(90deg, var(--border) 25%, #f0f4fb 50%, var(--border) 75%);
	background-size: 200% 100%;
	animation: shimmer 1.4s infinite;
}

.skeleton-row {
	height: 180px;
	border-radius: 16px;
	margin-bottom: 1rem;
	background: linear-gradient(90deg, var(--border) 25%, #f0f4fb 50%, var(--border) 75%);
	background-size: 200% 100%;
	animation: shimmer 1.4s infinite;
}

@keyframes shimmer {
	to {
		background-position: -200% 0
	}
}

.grid-wide {
	grid-column: 1/-1
}

/* ── Package Detail ──────────────────────────────────────── */
.detail-hero {
	height: 560px;
	position: relative;
	color: #fff;
	display: flex;
	align-items: end
}

.detail-hero>img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover
}

.detail-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(6, 18, 43, .88), rgba(6, 18, 43, .05) 70%)
}

.detail-hero-content {
	position: relative;
	padding-bottom: 3.5rem;
	display: flex;
	justify-content: space-between;
	align-items: end
}

.detail-hero h1 {
	font-size: clamp(3rem, 6vw, 5.5rem);
	margin: .7rem 0
}

.detail-badges {
	display: flex;
	gap: .5rem
}

.detail-badges span {
	background: rgba(255, 255, 255, .15);
	backdrop-filter: blur(10px);
	padding: .4rem .7rem;
	border-radius: 50px;
	font-size: .7rem
}

.detail-nav {
	position: sticky;
	top: 75px;
	z-index: 5;
	background: #fff;
	border-bottom: 1px solid var(--border)
}

.detail-nav .container {
	display: flex;
	gap: 2.3rem
}

.detail-nav a {
	padding: 1rem 0;
	font-size: .83rem;
	font-weight: 700;
	color: var(--muted)
}

.content-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 22px;
	padding: 2rem;
	margin-bottom: 1.5rem
}

.content-card h2 {
	font-size: 2.5rem;
	margin: .65rem 0 1rem
}

.intro-copy {
	font: 1.15rem/1.8 'Playfair Display';
	color: var(--muted)
}

.journey-facts {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-top: 2rem
}

.journey-facts>div {
	display: flex;
	gap: .8rem;
	background: var(--soft);
	padding: 1rem;
	border-radius: 14px
}

.journey-facts i {
	color: var(--gold);
	font-size: 1.3rem
}

.journey-facts span {
	display: flex;
	flex-direction: column
}

.journey-facts small,
.journey-facts em {
	font-size: .68rem;
	color: var(--muted);
	font-style: normal
}

.hotel-detail-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem
}

.hotel-detail-grid article {
	border: 1px solid var(--border);
	border-radius: 16px;
	overflow: hidden
}

.hotel-detail-grid img {
	width: 100%;
	height: 180px;
	object-fit: cover
}

.hotel-detail-grid article>div {
	padding: 1rem
}

.hotel-detail-grid h3 {
	font-size: 1.25rem;
	margin: .35rem 0
}

.hotel-detail-grid small,
.hotel-detail-grid p {
	color: var(--muted);
	font-size: .75rem
}

.hotel-detail-grid span {
	font-size: .65rem;
	background: var(--soft);
	padding: .3rem;
	margin-right: .2rem;
	border-radius: 5px
}

.map-placeholder {
	margin-top: 1rem;
	background: var(--primary-light);
	padding: 1rem;
	border-radius: 14px;
	display: flex;
	gap: .8rem
}

.map-placeholder i {
	font-size: 1.5rem;
	color: var(--primary)
}

.map-placeholder div {
	display: flex;
	flex-direction: column
}

.map-placeholder span {
	font-size: .75rem;
	color: var(--muted)
}

.timeline {
	position: relative;
	margin-top: 2rem
}

.timeline:before {
	content: "";
	position: absolute;
	left: 21px;
	top: 10px;
	bottom: 10px;
	width: 1px;
	background: var(--border)
}

.timeline-item {
	display: flex;
	gap: 1.2rem;
	position: relative;
	padding-bottom: 1.5rem
}

.timeline-item>span {
	width: 43px;
	height: 43px;
	border-radius: 50%;
	background: var(--primary);
	color: #fff;
	display: grid;
	place-items: center;
	border: 5px solid var(--soft);
	flex: none
}

.timeline-item small {
	color: var(--gold);
	text-transform: uppercase;
	letter-spacing: .1em;
	font-size: .65rem
}

.timeline-item h4 {
	font-size: 1rem;
	margin: .2rem 0
}

.timeline-item p {
	font-size: .8rem;
	color: var(--muted);
	margin: 0
}

.clean-list {
	list-style: none;
	padding: 0
}

.clean-list li {
	padding: .55rem 0 .55rem 1.5rem;
	position: relative;
	color: var(--muted)
}

.clean-list li:before {
	content: "–";
	position: absolute;
	left: 0
}

.included li:before {
	content: "✓";
	color: var(--primary);
	font-weight: 700
}

/* ── Booking Card ────────────────────────────────────────── */
.booking-card {
	position: sticky;
	top: 135px;
	border: 1px solid var(--border);
	border-radius: 22px;
	padding: 1.5rem;
	box-shadow: var(--shadow);
	background: #fff;
}

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

.booking-price small,
.booking-price span {
	font-size: .7rem;
	color: var(--muted)
}

.booking-price strong {
	font-size: 2rem
}

.offer-ribbon {
	background: var(--gold-light);
	color: #76540e;
	padding: .65rem;
	border-radius: 10px;
	font-size: .75rem;
	margin: 1rem 0
}

.price-options {
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: .4rem 1rem
}

.price-options>div {
	display: flex;
	justify-content: space-between;
	padding: .55rem 0;
	border-bottom: 1px solid var(--border);
	font-size: .8rem
}

.price-options>div:last-child {
	border: 0
}

.seats-notice {
	display: flex;
	gap: .7rem;
	background: var(--soft);
	padding: .8rem;
	border-radius: 12px;
	margin: 1rem 0
}

.seats-notice i {
	color: var(--gold)
}

.seats-notice div {
	display: flex;
	flex-direction: column;
	font-size: .78rem
}

.seats-notice span {
	color: var(--muted)
}

.btn-whatsapp {
	border: 1px solid #5bbf81;
	color: #187b45;
	margin-top: .7rem
}

.btn-download {
	color: var(--muted);
	font-size: .8rem
}

.secure-note {
	text-align: center;
	font-size: .68rem;
	color: var(--muted);
	margin: 1rem 0 0
}

.related-section {
	margin-top: 5rem
}

/* ── Auth Page ───────────────────────────────────────────── */
.auth-page {
	min-height: calc(100vh - 110px);
	display: grid;
	grid-template-columns: 1fr 1fr
}

.auth-visual {
	background: linear-gradient(0deg, rgba(6, 18, 43, .88), rgba(6, 18, 43, .18)), url('https://images.unsplash.com/photo-1591604129939-f1efa4d9f7fa?auto=format&fit=crop&w=1200&q=85') center/cover;
	padding: 3rem;
	color: #fff;
	display: flex;
	align-items: end;
}

.auth-visual>div {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%
}

.auth-visual blockquote {
	font: 2.5rem/1.2 'Playfair Display';
	max-width: 550px
}

.auth-visual blockquote small {
	display: block;
	font: .75rem 'DM Sans';
	letter-spacing: .15em;
	margin-top: 1rem
}

.auth-form-wrap {
	display: grid;
	place-items: center;
	padding: 4rem 2rem;
	background: #fafbf9
}

.auth-form {
	width: min(480px, 100%)
}

.auth-form h1 {
	font-size: 3rem;
	margin: .8rem 0
}

.auth-form>p {
	color: var(--muted);
	margin-bottom: 2rem
}

.form-control,
.form-select {
	border-color: #d0daea;
	border-radius: 11px
}

.form-control:focus,
.form-select:focus {
	border-color: var(--primary);
	box-shadow: 0 0 0 .2rem rgba(31, 75, 143, .12)
}

.auth-switch {
	text-align: center;
	margin-top: 2rem;
	color: var(--muted)
}

.auth-switch a {
	color: var(--primary);
	font-weight: 700
}

/* ── Booking Page ────────────────────────────────────────── */
.booking-page {
	background: var(--soft);
	padding: 4rem 0 7rem
}

.booking-heading {
	text-align: center
}

.booking-heading>a {
	display: block;
	text-align: left;
	color: var(--muted)
}

.booking-heading h1 {
	font-size: 3.5rem;
	margin: .6rem 0
}

.booking-heading p {
	color: var(--muted)
}

.booking-progress {
	max-width: 800px;
	margin: 2.5rem auto 3rem;
	display: flex;
	justify-content: space-between;
	position: relative
}

.booking-progress:before {
	content: "";
	height: 2px;
	background: var(--border);
	position: absolute;
	left: 8%;
	right: 8%;
	top: 18px
}

.booking-progress div {
	position: relative;
	text-align: center;
	color: #8b9a95
}

.booking-progress span {
	width: 38px;
	height: 38px;
	background: var(--border);
	border: 4px solid var(--soft);
	border-radius: 50%;
	display: grid;
	place-items: center;
	margin: auto
}

.booking-progress b {
	font-size: .68rem;
	display: block;
	margin-top: .35rem
}

.booking-progress .active span {
	background: var(--primary);
	color: #fff
}

.booking-progress .active {
	color: var(--primary)
}

.booking-step {
	display: none
}

.booking-step.active {
	display: block;
	animation: fadeUp .4s ease
}

.step-kicker {
	font-size: .68rem;
	text-transform: uppercase;
	letter-spacing: .12em;
	color: var(--gold)
}

.booking-step h2 {
	font-size: 2rem
}

.traveller-block {
	background: var(--soft);
	border-radius: 15px;
	padding: 1rem;
	margin: 1rem 0
}

.traveller-block h4 {
	font-size: .9rem
}

.document-callout {
	display: flex;
	gap: 1rem;
	background: var(--primary-light);
	padding: 1.3rem;
	border-radius: 15px
}

.document-callout>i {
	font-size: 2rem;
	color: var(--primary)
}

.document-callout p {
	margin: .3rem 0;
	color: var(--muted)
}

.consent-box {
	display: flex;
	gap: .7rem;
	margin-top: 1.3rem
}

.payment-options {
	display: grid;
	gap: .7rem
}

.payment-options label {
	border: 1px solid var(--border);
	border-radius: 14px;
	padding: 1rem;
	display: flex;
	align-items: center;
	gap: 1rem;
	cursor: pointer
}

.payment-options label:has(input:checked) {
	border-color: var(--primary);
	background: var(--primary-xlight)
}

.payment-options i {
	font-size: 1.4rem
}

.payment-options span {
	display: flex;
	flex-direction: column
}

.payment-options small {
	color: var(--muted)
}

.booking-summary {
	position: sticky;
	top: 110px;
	background: #fff;
	border-radius: 20px;
	border: 1px solid var(--border);
	overflow: hidden
}

.booking-summary>img {
	width: 100%;
	height: 190px;
	object-fit: cover
}

.booking-summary h3 {
	font-size: 1.4rem
}

.booking-summary p {
	font-size: .78rem;
	color: var(--muted)
}

/* ── Account / Portal page ───────────────────────────────── */
.summary-line,
.summary-total {
	display: flex;
	justify-content: space-between;
	padding: .5rem 1rem;
	font-size: .82rem
}

.summary-total {
	background: var(--primary);
	color: #fff;
	font-weight: 700;
	font-size: 1rem;
	border-radius: 0 0 20px 20px
}

/* ── Empty state ─────────────────────────────────────────── */
.empty-state {
	text-align: center;
	padding: 5rem 2rem;
	color: var(--muted);
}

.empty-state i {
	font-size: 3.5rem;
	color: var(--border);
	display: block;
	margin-bottom: 1rem
}

.empty-state h3 {
	font-size: 1.5rem;
	color: var(--ink)
}

/* ── Reveal animation ────────────────────────────────────── */
.reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity .55s ease, transform .55s ease
}

.reveal.visible {
	opacity: 1;
	transform: none
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(16px)
	}

	to {
		opacity: 1;
		transform: none
	}
}

/* ── Row-card (Package listing) — styles from packages-reference ── */
.package-row-grid {
	display: grid;
	gap: 1.2rem
}

.package-row-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 18px;
	padding: 0;
	box-shadow: var(--pkg-shadow);
	transition: var(--pkg-transition);
	display: grid;
	grid-template-columns: 140px 1fr 1fr 220px;
	position: relative;
	overflow: hidden;
}

.package-row-card:hover {
	box-shadow: var(--pkg-shadow-hover);
	transform: translateY(-3px);
}

.row-ribbon {
	position: absolute;
	top: 0;
	left: 0;
	background: var(--primary);
	color: #fff;
	font-size: .62rem;
	font-weight: 700;
	padding: .25rem .7rem;
	border-radius: 0 0 12px 0;
	display: flex;
	gap: .4rem;
	align-items: center;
	z-index: 2;
}

.row-ribbon span {
	opacity: .6
}

.row-wishlist {
	position: absolute;
	top: .7rem;
	right: .7rem;
	z-index: 2;
}

.row-airline {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	padding: 1.4rem 1rem;
	border-right: 1px solid var(--border);
	background: var(--soft);
	border-radius: 18px 0 0 18px;
}

.airline-logo-wrap {
	width: 52px;
	height: 52px;
	border-radius: 12px;
	background: #fff;
	display: grid;
	place-items: center;
	box-shadow: var(--shadow-sm);
	overflow: hidden
}

.airline-logo-wrap img {
	max-width: 46px;
	max-height: 46px;
	object-fit: contain
}

.airline-monogram {
	font-size: 1.1rem;
	font-weight: 800;
	color: var(--primary)
}

.airline-name {
	font-size: .72rem;
	font-weight: 700;
	color: var(--ink)
}

.airline-flight {
	font-size: .62rem;
	color: var(--muted);
	font-family: monospace
}

.row-journey {
	padding: 1.4rem 1.2rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	border-right: 1px solid var(--border)
}

.row-journey h3 {
	font-family: var(--pkg-font);
	font-size: 1.3rem;
	font-weight: 800;
	letter-spacing: -.02em;
	color: var(--primary);
	display: flex;
	align-items: center;
	gap: .4rem;
	margin: 0 0 .3rem;
}

.row-journey h3 i {
	font-size: .9rem;
	color: var(--gold)
}

.row-route-label {
	font-size: .72rem;
	color: var(--muted);
	margin: 0 0 .9rem
}

.row-dates {
	display: flex;
	align-items: center;
	gap: .5rem
}

.date-col {
	display: flex;
	flex-direction: column
}

.date-col small {
	font-size: .58rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--muted)
}

.date-col b {
	font-size: .78rem
}

.duration-bubble {
	flex: 1;
	text-align: center;
	font-size: .65rem;
	font-weight: 700;
	background: var(--primary-light);
	color: var(--primary);
	border-radius: 50px;
	padding: .28rem .55rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .25rem;
}

.row-hotels {
	padding: 1.2rem 1.1rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: .7rem;
	border-right: 1px solid var(--border)
}

.hotel-item {
	display: flex;
	gap: .7rem;
	align-items: flex-start
}

.hotel-icon {
	width: 30px;
	height: 30px;
	border-radius: 8px;
	background: var(--primary-light);
	color: var(--primary);
	display: grid;
	place-items: center;
	font-size: .9rem;
	flex: none
}

.hotel-info {
	display: flex;
	flex-direction: column;
	min-width: 0
}

.hotel-info small {
	font-size: .58rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--primary)
}

.hotel-info b {
	font-size: .78rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}

.hotel-info em {
	font-style: normal;
	font-size: .64rem;
	color: var(--muted)
}

.hotel-divider {
	height: 1px;
	background: var(--border)
}

.row-commerce {
	padding: 1.2rem 1.1rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: .7rem
}

.row-prices {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: .4rem
}

.price-cell {
	background: var(--soft);
	border-radius: 8px;
	padding: .5rem .55rem;
	display: flex;
	flex-direction: column;
	gap: .1rem
}

.price-cell span {
	font-size: .58rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: var(--muted)
}

.price-cell b {
	font-size: .78rem;
	font-weight: 700;
	color: var(--primary)
}

.row-availability {}

.seats-row {
	display: flex;
	justify-content: space-between;
	font-size: .65rem;
	color: var(--muted);
	margin-bottom: .3rem
}

.availability-progress {
	height: 4px;
	background: var(--border);
	border-radius: 2px
}

.progress-fill {
	height: 100%;
	background: linear-gradient(90deg, var(--primary), var(--gold));
	border-radius: 2px
}

.row-actions {
	display: flex;
	gap: .5rem
}

.btn-row-details {
	flex: 1;
	border: 1.5px solid var(--primary);
	background: transparent;
	color: var(--primary);
	border-radius: 9px;
	padding: .55rem .5rem;
	font-size: .75rem;
	font-weight: 700;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .3rem;
	transition: .2s;
}

.btn-row-details:hover {
	background: var(--primary);
	color: #fff
}

.btn-row-book {
	flex: 1;
	background: var(--gold);
	color: #fff;
	border: none;
	border-radius: 9px;
	padding: .55rem .5rem;
	font-size: .75rem;
	font-weight: 700;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .3rem;
	transition: .2s;
}

.btn-row-book:hover {
	background: var(--gold-dark);
	color: #fff
}

/* ── Sticky nav scroll class ─────────────────────────────── */
.nav-over-hero {
	background: rgba(255, 255, 255, .06) !important;
	backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(255, 255, 255, .12) !important;
}

.nav-over-hero .nav-link {
	color: rgba(255, 255, 255, .9) !important
}

.nav-over-hero .nav-link:hover,
.nav-over-hero .nav-link.active {
	color: #fff !important
}

.nav-over-hero .navbar-brand {
	color: #fff !important
}

.nav-over-hero .navbar-brand .brand-mark {
	background: rgba(255, 255, 255, .15)
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1100px) {
	.package-row-card {
		grid-template-columns: 110px 1fr 1fr;
		grid-template-rows: auto auto;
	}

	.row-commerce {
		grid-column: 1 / -1;
		border-top: 1px solid var(--border);
		border-right: 0
	}
}

@media (max-width: 900px) {
	.package-grid {
		grid-template-columns: 1fr 1fr
	}

	.stats-grid {
		grid-template-columns: repeat(2, 1fr)
	}

	.testimonial-grid {
		grid-template-columns: 1fr 1fr
	}

	.auth-page {
		grid-template-columns: 1fr
	}

	.auth-visual {
		display: none
	}
}

@media (max-width: 768px) {
	.package-row-card {
		grid-template-columns: 1fr;
		border-radius: 16px
	}

	.row-airline {
		border-radius: 16px 16px 0 0;
		flex-direction: row;
		border-right: none;
		border-bottom: 1px solid var(--border)
	}

	.row-journey,
	.row-hotels {
		border-right: none;
		border-bottom: 1px solid var(--border)
	}

	.search-deck {
		display: none
	}

	.hero-content-wrap {
		padding: 5rem 0 3rem
	}

	.package-grid {
		grid-template-columns: 1fr
	}

	.testimonial-grid {
		grid-template-columns: 1fr
	}

	.stats-grid {
		grid-template-columns: 1fr 1fr
	}

	.hero-cta-group {
		flex-direction: column
	}

	.btn-hero-primary,
	.btn-hero-outline {
		width: 100%;
		justify-content: center
	}

	.newsletter-form {
		min-width: 0;
		width: 100%
	}

	.newsletter-inner {
		flex-direction: column
	}

	.footer-cta {
		flex-direction: column;
		gap: 1.5rem
	}
}

@media (max-width: 576px) {
	.hero h1 {
		font-size: 2.4rem
	}

	.stats-grid {
		grid-template-columns: 1fr 1fr
	}

	.pkg-card-header {
		flex-direction: column;
		gap: .5rem
	}

	.pkg-days-badge {
		align-self: flex-start
	}
}

/* ── NEW HORIZONTAL ROW CARD (Matches Screenshot) ───────── */
.package-list-layout {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.featured-pkg-wrap {
	margin-bottom: 1.5rem;
}

.pkg-row-modern {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(15, 40, 100, 0.12);
	display: flex;
	flex-direction: column;
	transition: transform 0.25s, box-shadow 0.25s;
	border: 1px solid var(--border);
}

.pkg-row-modern:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(15, 40, 100, 0.2);
}

/* Top Blue Section */
.pkg-row-top {
	background: var(--primary-mid);
	/* The blue from screenshot #27568c roughly */
	background: linear-gradient(135deg, #27568c 0%, #1e4573 100%);
	color: #fff;
	display: flex;
	padding: 1.2rem;
	gap: 1.5rem;
	align-items: stretch;
}

.pkg-col-identity {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
	min-width: 140px;
}

.pkg-index-badge {
	background: #ff7f3f;
	/* Orange */
	color: #fff;
	width: 32px;
	height: 32px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: .9rem;
	flex-shrink: 0;
}

.pkg-id-info {
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
}

.pkg-code {
	font-weight: 700;
	font-size: .75rem;
	letter-spacing: 1px;
	color: rgba(255, 255, 255, .9);
	display: flex;
	align-items: center;
	gap: .3rem;
}

.pkg-date-pill {
	background: #007bff;
	/* Bright blue pill */
	border-radius: 20px;
	padding: 0.15rem 0.6rem;
	font-size: 0.7rem;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	margin-bottom: 0.1rem;
}

.pkg-date-pill:nth-of-type(2) {
	background: #00a65a;
	/* Green pill */
}

.pkg-route {
	font-size: 0.65rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.8);
	margin-top: .3rem;
	display: flex;
	align-items: center;
	gap: .3rem;
}

.pkg-col-stats {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	justify-content: center;
	min-width: 80px;
}

.pkg-stat-badge {
	background: rgba(0, 0, 0, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 6px;
	padding: 0.3rem 0.5rem;
	display: flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.7rem;
}

.pkg-stat-badge small {
	color: rgba(255, 255, 255, 0.7);
}

.pkg-stat-badge b {
	color: #fff;
	margin-left: auto;
	font-size: .8rem;
}

.pkg-col-flights {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.6rem;
	flex: 1;
}

.pkg-flight-line {
	display: flex;
	align-items: center;
	gap: 1rem;
	font-size: 0.75rem;
	font-family: monospace;
	font-weight: 600;
}

.pkg-flight-line .f-num {
	width: 50px;
}

.pkg-flight-line .f-date {
	width: 60px;
	color: rgba(255, 255, 255, .8);
}

.pkg-flight-line .f-route {
	width: 60px;
}

.pkg-flight-line .f-time {
	width: 90px;
}

.pkg-flight-line .f-bag {
	color: rgba(255, 255, 255, .8);
}

.pkg-col-hotels {
	display: flex;
	gap: 0.5rem;
}

.pkg-hotel-box {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 8px;
	padding: 0.6rem;
	width: 140px;
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
}

.pkg-hotel-head {
	display: flex;
	gap: 0.4rem;
	align-items: flex-start;
}

.pkg-hotel-name {
	font-size: 0.7rem;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
}

.pkg-hotel-name small {
	font-size: 0.55rem;
	color: rgba(255, 255, 255, 0.7);
	font-weight: 400;
}

.pkg-hotel-nights {
	font-size: 0.7rem;
	color: #ffeb3b;
	display: flex;
	align-items: center;
	gap: 0.3rem;
}

.pkg-hotel-nights b {
	font-weight: 600;
}

.pkg-hotel-dist {
	font-size: 0.6rem;
	color: rgba(255, 255, 255, 0.7);
	display: flex;
	align-items: center;
	gap: 0.3rem;
}

.text-gold {
	color: #f5a754 !important;
}

/* Bottom White Section */
.pkg-row-bottom {
	display: flex;
	align-items: center;
	padding: 0.8rem 1.2rem;
	gap: 1rem;
	background: #fdfdfd;
}

.pkg-col-airline {
	min-width: 120px;
	font-weight: 800;
	color: var(--primary);
	font-size: 1.1rem;
}

.pkg-col-prices {
	flex: 1;
	display: flex;
	justify-content: space-around;
	border-left: 1px solid var(--border);
	padding-left: 1rem;
}

.pkg-price-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.pkg-price-item small {
	font-size: 0.7rem;
	font-weight: 600;
	color: var(--muted);
	text-transform: capitalize;
	margin-bottom: 0.2rem;
}

.pkg-price-item b {
	font-size: 1.1rem;
	font-weight: 800;
	color: var(--ink);
}

.text-danger {
	color: #dc3545 !important;
}

.pkg-col-actions {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	border-left: 1px solid var(--border);
	padding-left: 1rem;
}

.btn-pkg-book-sm {
	background: var(--gold);
	color: #fff;
	border: none;
	border-radius: 6px;
	padding: 0.4rem 1rem;
	font-size: 0.75rem;
	font-weight: 700;
	text-align: center;
	display: flex;
	align-items: center;
	gap: 0.3rem;
}

.btn-pkg-book-sm:hover {
	background: var(--gold-dark);
	color: #fff;
	transform: translateY(-1px);
}

.btn-pkg-whatsapp-sm {
	background: var(--primary-light);
	color: var(--primary);
	border: 1px solid var(--primary);
	border-radius: 6px;
	padding: 0.4rem 1rem;
	font-size: 0.75rem;
	font-weight: 700;
	text-align: center;
	display: flex;
	align-items: center;
	gap: 0.3rem;
}

.btn-pkg-whatsapp-sm:hover {
	background: var(--primary);
	color: #fff;
	transform: translateY(-1px);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
	.pkg-row-top {
		flex-wrap: wrap;
	}

	.pkg-col-hotels {
		flex-wrap: wrap;
		flex: 1;
	}
}

@media (max-width: 768px) {
	.pkg-row-bottom {
		flex-wrap: wrap;
	}

	.pkg-col-prices {
		border-left: none;
		padding-left: 0;
		flex-wrap: wrap;
		gap: 1rem;
		justify-content: flex-start;
	}

	.pkg-col-actions {
		border-left: none;
		padding-left: 0;
		width: 100%;
		flex-direction: row;
	}

	.btn-pkg-book-sm,
	.btn-pkg-whatsapp-sm {
		flex: 1;
		justify-content: center;
	}

	.pkg-flight-line {
		font-size: 0.65rem;
		gap: 0.5rem;
		flex-wrap: wrap;
	}
}

/* ── UPSKY STYLE HEADER ────────────────────────────────────── */
.upsky-header {
	background: #fff;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	height: 90px;
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.upsky-brand {
	display: flex;
	align-items: center;
	text-decoration: none;
	height: 100%;
}

.upsky-brand img {
	height: 60px;
	width: auto;
	object-fit: contain;
}

.upsky-brand span {
	font-weight: 800;
	font-size: 1.2rem;
	color: var(--primary);
	font-family: var(--pkg-font);
}

.upsky-nav-center {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 3rem;
	align-items: center;
}

@media (min-width: 992px) {
	.upsky-nav-center {
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
	}
}

.upsky-nav-center li a {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: #334;
	font-size: 0.8rem;
	font-weight: 700;
	transition: all 0.2s;
}

.upsky-nav-center li a i {
	font-size: 1.4rem;
	margin-bottom: 0.3rem;
	color: #445;
	transition: all 0.2s;
}

.upsky-nav-center li a:hover,
.upsky-nav-center li a.active {
	color: var(--primary);
}

.upsky-nav-center li a:hover i,
.upsky-nav-center li a.active i {
	color: var(--primary);
	transform: translateY(-2px);
}

.upsky-nav-right {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.upsky-action-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	color: #334;
	font-size: 0.75rem;
	font-weight: 600;
}

.upsky-action-link i {
	font-size: 1.2rem;
	color: var(--primary);
	margin-bottom: 0.2rem;
}

.upsky-whatsapp {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	text-decoration: none;
	color: var(--ink);
}

.upsky-whatsapp div {
	display: flex;
	flex-direction: column;
	text-align: right;
	line-height: 1.2;
}

.upsky-whatsapp small {
	font-size: 0.65rem;
	color: var(--muted);
}

.upsky-whatsapp b {
	font-size: 0.85rem;
	color: #25D366;
}

.upsky-whatsapp i {
	font-size: 1.8rem;
	color: #25D366;
}

.upsky-dropdown-trigger {
	border: 1px solid var(--border);
	border-radius: 30px;
	padding: 0.4rem 1rem;
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--ink);
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

.upsky-dropdown-trigger:hover {
	background: #f8f9fa;
}

.btn-upsky-admin {
	background: var(--gold);
	color: #fff;
	border-radius: 6px;
	padding: 0.4rem 0.8rem;
	font-size: 0.8rem;
	font-weight: 700;
	text-decoration: none;
}

.btn-upsky-admin:hover {
	background: var(--gold-dark);
	color: #fff;
}

/* ── UPSKY STYLE HERO ──────────────────────────────────────── */
.upsky-hero {
	position: relative;
	background: #142a4a;
	background: radial-gradient(circle at center, #1c3b65 0%, #0d1e38 100%);
	min-height: 80vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-bottom: 120px;
}

.upsky-hero-overlay {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
	background-size: 40px 40px;
	opacity: 0.5;
	pointer-events: none;
}

.upsky-hero-content {
	position: relative;
	z-index: 2;
	margin-top: -60px;
}

.upsky-hero-title {
	font-family: var(--pkg-font);
	font-size: clamp(3rem, 5vw, 4.5rem);
	font-weight: 400;
	color: #fff;
	line-height: 1.1;
	margin-bottom: 0.5rem;
}

.upsky-hero-title .text-gold {
	color: #f5a754 !important;
}

.upsky-hero-subtitle {
	font-family: 'Inter', sans-serif;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.3em;
	color: rgba(255, 255, 255, 0.6);
	text-transform: uppercase;
	margin-top: 1.5rem;
}

/* Image Cards inside hero */
.upsky-hero-cards-wrapper {
	position: relative;
	margin-top: 4rem;
	z-index: 10;
}

.upsky-cards-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.upsky-image-card {
	position: relative;
	height: 220px;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
	transition: transform 0.3s ease;
	background: #000;
}

.upsky-image-card:hover {
	transform: translateY(-8px);
}

.upsky-card-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.8;
	transition: transform 0.6s ease;
}

.upsky-image-card:hover .upsky-card-bg {
	transform: scale(1.08);
}

.upsky-card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
}

.upsky-card-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 1.2rem;
	text-align: center;
	z-index: 2;
}

.upsky-card-content h3 {
	color: #fff;
	font-family: 'Playfair Display', serif;
	font-size: 1.2rem;
	margin-bottom: 0.8rem;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.upsky-card-actions {
	display: flex;
	gap: 0.5rem;
	justify-content: center;
}

.btn-upsky-card {
	background: #f5a754;
	color: #000;
	font-size: 0.65rem;
	font-weight: 800;
	padding: 0.3rem 0.8rem;
	border-radius: 4px;
	text-decoration: none;
}

.btn-upsky-card-dark {
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
	backdrop-filter: blur(4px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	font-size: 0.65rem;
	font-weight: 800;
	padding: 0.3rem 0.8rem;
	border-radius: 4px;
	text-decoration: none;
}

.btn-upsky-card:hover,
.btn-upsky-card-dark:hover {
	filter: brightness(1.1);
	color: inherit;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
	.upsky-nav-center {
		gap: 1.5rem;
	}

	.upsky-nav-center li a span {
		display: none;
	}

	/* Hide text on smaller desktops, keep icons */
	.upsky-nav-center li a i {
		margin-bottom: 0;
		font-size: 1.5rem;
	}
}

@media (max-width: 991px) {
	.upsky-header {
		height: auto;
		padding: 0.8rem 0;
	}

	.upsky-nav-center {
		flex-direction: column;
		gap: 1rem;
		margin: 1.5rem 0;
	}

	.upsky-nav-center li a span {
		display: block;
	}

	.upsky-nav-right {
		flex-direction: column;
		align-items: stretch;
		gap: 1rem;
	}

	.upsky-hero-cards-wrapper {
		position: relative;
		bottom: 0;
		margin-top: 2rem;
		padding-bottom: 0;
	}

	.upsky-hero {
		padding-bottom: 0;
		min-height: auto;
		padding-top: 4rem;
	}

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

@media (max-width: 576px) {
	.upsky-cards-grid {
		grid-template-columns: 1fr;
	}
}

/* -- Account Page Styles ----------------------------------- */
.account-hero {
	background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
	padding: 6rem 0 4rem;
	color: #fff;
	position: relative;
	overflow: hidden;
}

.account-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
	background-size: 30px 30px;
	pointer-events: none;
}

.account-hero .container {
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.account-hero h1 {
	font-size: clamp(2.5rem, 4vw, 3.5rem);
	margin: 0.5rem 0 1rem;
}

.account-hero p {
	font-size: 1.1rem;
	opacity: 0.8;
	margin: 0;
}

.account-page {
	padding: 3rem 0 6rem;
	background: var(--soft);
	min-height: 50vh;
}

.account-tabs {
	display: flex;
	gap: 0.8rem;
	margin-bottom: 2.5rem;
	border-bottom: 1px solid var(--border);
	padding-bottom: 1rem;
	overflow-x: auto;
	scrollbar-width: none;
}

.account-tabs::-webkit-scrollbar {
	display: none;
}

.account-tabs button {
	background: #fff;
	border: 1px solid var(--border);
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--muted);
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	transition: all 0.25s ease;
	white-space: nowrap;
}

.account-tabs button:hover {
	background: var(--primary-xlight);
	color: var(--primary);
	border-color: var(--primary-light);
}

.account-tabs button.active {
	background: var(--primary);
	color: #fff;
	border-color: var(--primary);
	box-shadow: 0 8px 20px rgba(0, 90, 169, 0.2);
}

.account-panel {
	display: none;
	animation: fadeUp 0.4s ease;
}

.account-panel.active {
	display: block;
}

.panel-heading {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 2rem;
}

.panel-heading h2 {
	margin: 0.5rem 0 0;
}

/* Journey List */
.journey-list {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.journey-list article {
	background: #fff;
	border-radius: 16px;
	border: 1px solid var(--border);
	display: flex;
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.journey-list article:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-sm);
}

.journey-list img {
	width: 220px;
	object-fit: cover;
}

.journey-main {
	padding: 1.5rem;
	flex: 1;
	border-right: 1px solid var(--border);
}

.journey-main h3 {
	font-size: 1.4rem;
	margin: 0.8rem 0;
}

.journey-main p {
	color: var(--muted);
	font-size: 0.9rem;
	display: flex;
	gap: 1.5rem;
}

.journey-main p i {
	color: var(--gold);
}

.journey-actions {
	display: flex;
	gap: 1rem;
	margin-top: 1.5rem;
}

.journey-actions a,
.journey-actions button {
	padding: 0.5rem 1rem;
	font-size: 0.85rem;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	transition: 0.2s ease;
}

.journey-actions a {
	background: var(--primary-light);
	color: var(--primary);
}

.journey-actions a:hover {
	background: var(--primary);
	color: #fff;
}

.journey-actions button {
	background: transparent;
	border: 1px solid var(--border);
	color: var(--muted);
}

.journey-actions button:hover {
	border-color: var(--primary);
	color: var(--primary);
}

.journey-amount {
	padding: 1.5rem;
	min-width: 200px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
	background: var(--soft);
}

.journey-amount small {
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 0.65rem;
	color: var(--muted);
}

.journey-amount strong {
	font-size: 1.8rem;
	color: var(--primary);
	margin: 0.25rem 0 0.75rem;
}

/* Status Labels */
.status {
	font-size: 0.65rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 0.35rem 0.6rem;
	border-radius: 50px;
	display: inline-block;
}

.status-pending {
	background: #fff3cd;
	color: #856404;
}

.status-confirmed {
	background: #d4edda;
	color: #155724;
}

.status-cancelled {
	background: #f8d7da;
	color: #721c24;
}

.status-completed {
	background: #e2e3e5;
	color: #383d41;
}

.payment-pending {
	font-size: 0.75rem;
	color: #dc3545;
	font-weight: 600;
}

.payment-paid {
	font-size: 0.75rem;
	color: #28a745;
	font-weight: 600;
}

/* Notifications */
.notification-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.notification-list>div {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 14px;
	padding: 1.25rem;
	display: flex;
	gap: 1.25rem;
	align-items: flex-start;
	transition: box-shadow 0.2s ease;
}

.notification-list>div:hover {
	box-shadow: var(--shadow-sm);
}

.notification-list i {
	font-size: 1.25rem;
	color: var(--primary);
	background: var(--primary-light);
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	flex-shrink: 0;
}

.notification-list p {
	margin: 0;
	display: flex;
	flex-direction: column;
	width: 100%;
}

.notification-list b {
	font-size: 1.05rem;
	color: var(--ink);
	margin-bottom: 0.35rem;
}

.notification-list span {
	font-size: 0.95rem;
	color: var(--muted);
	line-height: 1.6;
}

.notification-list small {
	margin-top: 0.75rem;
	color: var(--primary-mid);
	font-weight: 600;
	font-size: 0.75rem;
}

/* Profile Card */
.profile-card {
	max-width: 700px;
}

.profile-card label {
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--muted);
	margin-bottom: 0.5rem;
}

.profile-card .form-control {
	background: var(--soft);
	border-color: var(--border);
	font-weight: 500;
	color: var(--ink);
}

@media (max-width: 991px) {
	.pkg-transport-blue {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	.transport-label {
		border-right: none;
		padding-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.2);
		padding-bottom: 5px;
		width: 100%;
	}
}

/* Makkah & Madinah emoji icon containers for hotel cards */
.mh-city-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	margin-right: 12px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.7rem;
	line-height: 1;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}

/* Kaaba 🕋 — Makkah golden tint */
.makkah-icon {
	background: linear-gradient(135deg, #fff7e0, #fde68a);
	border: 2px solid rgba(212, 175, 55, 0.35);
}

/* Prophet's Mosque 🕌 — Madinah green tint */
.madinah-icon {
	background: linear-gradient(135deg, #e8f5e9, #a5d6a7);
	border: 2px solid rgba(76, 175, 80, 0.35);
}

.modern-hotel-card.makkah small {
	color: #b8860b !important;
}

.modern-hotel-card.madinah small {
	color: #2e7d32 !important;
}

@media (max-width: 768px) {
	.account-hero .container {
		flex-direction: column;
		align-items: flex-start;
		gap: 1.5rem;
	}

	.journey-list article {
		flex-direction: column;
	}

	.journey-list img {
		width: 100%;
		height: 200px;
	}

	.journey-amount {
		align-items: flex-start;
		border-top: 1px solid var(--border);
	}
}

/* Package Card Redesign Additions */
.flight-detailed-block {
	background: #f8f9fa;
	border: 1px solid #e9ecef;
	border-radius: 8px;
	padding: 12px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	overflow: hidden;
}

.fd-airline {
	display: flex;
	align-items: center;
	flex: 1;
	min-width: 120px;
	overflow: hidden;
}

.fd-logo {
	width: 40px;
	height: auto;
	border-radius: 4px;
	margin-right: 12px;
	flex-shrink: 0;
}

.fd-airline-info {
	display: flex;
	flex-direction: column;
	line-height: 1.2;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.fd-airline-info small {
	font-size: 0.65rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #6c757d;
}

.fd-airline-info strong {
	font-size: 0.9rem;
	font-weight: 700;
	color: #212529;
	overflow: hidden;
	text-overflow: ellipsis;
}

.fd-airline-info span {
	font-size: 0.8rem;
	color: #495057;
	overflow: hidden;
	text-overflow: ellipsis;
}

.fd-journey {
	display: flex;
	flex-direction: column;
	flex: 1.5;
	min-width: 180px;
}

.fd-route {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.fd-leg {
	display: flex;
	flex-direction: column;
	line-height: 1.2;
	min-width: 50px;
}

.fd-leg b {
	font-size: 1.1rem;
	font-family: 'DM Sans', sans-serif;
	color: #212529;
}

.fd-leg span {
	font-size: 0.8rem;
	color: #6c757d;
	white-space: nowrap;
}

.fd-divider {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1;
	padding: 0 10px;
}

.fd-divider span {
	font-size: 0.75rem;
	font-weight: 600;
	color: #212529;
	white-space: nowrap;
}

.fd-line {
	width: 100%;
	height: 2px;
	background: #dee2e6;
	position: relative;
	margin: 4px 0;
}

.fd-line::after {
	content: '';
	position: absolute;
	right: 0;
	top: -3px;
	width: 0;
	height: 0;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	border-left: 6px solid #dee2e6;
}

.fd-divider small {
	font-size: 0.65rem;
	color: #adb5bd;
	white-space: nowrap;
}

/* ── Flight type badge ──────────────────────────────────────────── */
.fd-flight-type-badge {
	display: inline-flex;
	align-items: center;
	gap: 3px;
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: .03em;
	padding: 3px 8px;
	border-radius: 50px;
	white-space: nowrap;
	flex-shrink: 0;
	margin-left: auto;
}

.fd-badge-direct {
	background: #eaf7f0;
	color: #1a7f56;
	border: 1px solid #b2dfc9;
}

.fd-badge-indirect {
	background: #fff4e6;
	color: #b84c00;
	border: 1px solid #ffd0a0;
}

/* ── Indirect stop strip (shown below the route row) ────────────── */
.flight-detailed-block {
	background: #f8f9fa;
	border: 1px solid #e9ecef;
	border-radius: 8px;
	padding: 12px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	overflow: hidden;
}

.fd-airline {
	display: flex;
	align-items: center;
	gap: 8px;
}

.fd-stops-strip {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 4px;
	margin-top: 8px;
}

.fd-stop-chip {
	display: flex;
	align-items: center;
	gap: 6px;
	background: rgba(184, 76, 0, 0.05);
	color: #b84c00;
	border-radius: 50px;
	padding: 4px 10px;
	font-size: 0.7rem;
	font-weight: 500;
}

.fd-stop-chip-city {
	font-weight: 700;
}

.fd-stop-chip-detail {
	opacity: 0.8;
}

.fd-stop-chip-detail::before {
	content: "•";
	margin-right: 6px;
}

.fd-stop-connector {
	width: 12px;
	height: 1px;
	background: #f0c090;
}

.pkg-col-flights-detailed {
	flex: 2;
	margin: 0 15px;
	min-width: 320px;
}

.pkg-col-hotels-modern {
	flex: 1;
	min-width: 260px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.modern-hotel-card {
	background: #fff;
	border: 1px solid #e9ecef;
	border-radius: 8px;
	padding: 10px;
	display: flex;
	align-items: center;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.modern-hotel-card.makkah .mh-icon {
	color: #d4af37;
	background: rgba(212, 175, 55, 0.1);
}

.modern-hotel-card.madinah .mh-icon {
	color: #4CAF50;
	background: rgba(76, 175, 80, 0.1);
}

.mh-icon {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	margin-right: 12px;
}

.mh-content {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	line-height: 1.2;
}

.mh-content small {
	font-size: 0.65rem;
	text-transform: uppercase;
	color: #adb5bd;
	letter-spacing: 0.5px;
}

.mh-content strong {
	font-size: 0.9rem;
	color: #343a40;
	margin-top: 2px;
}

.mh-dist {
	font-size: 0.75rem;
	color: #6c757d;
	margin-top: 2px;
}

.mh-nights {
	text-align: right;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	line-height: 1;
}

.mh-nights {
	font-size: 1.2rem;
	font-weight: 700;
	color: #212529;
}

.mh-nights span {
	font-size: 0.65rem;
	font-weight: 400;
	text-transform: uppercase;
	color: #adb5bd;
	margin-top: 2px;
}

.modern-include-badge {
	display: inline-flex;
	align-items: center;
	padding: 4px 10px;
	background: #f1f3f5;
	color: #495057;
	font-size: 0.8rem;
	font-weight: 500;
	border-radius: 20px;
	gap: 4px;
	border: 1px solid #e9ecef;
}

.modern-include-badge i {
	color: #20c997;
	font-size: 0.9rem;
}

.modern-price-card {
	flex: 1;
	min-width: 90px;
	background: #f8f9fa;
	padding: 10px;
	border-radius: 8px;
	text-align: center;
	border: 1px solid #e9ecef;
	display: flex;
	flex-direction: column;
}

.modern-price-card small {
	font-size: 0.7rem;
	color: #6c757d;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 2px;
}

.modern-price-card b {
	font-size: 0.9rem;
	color: #212529;
}

.modern-price-card.sharing-card {
	background: #fff8e1;
	border-color: #ffe082;
}

.modern-price-card.sharing-card b {
	color: #f57f17;
}

@media (max-width: 991px) {
	.flight-detailed-block {
		flex-direction: column;
		align-items: flex-start;
	}

	.fd-airline,
	.fd-route {
		width: 100%;
	}

	.fd-route {
		margin-top: 10px;
	}

	.pkg-col-pricing {
		flex-wrap: wrap;
	}

	.modern-price-card {
		flex-basis: 45%;
	}
}

/* ============================================================
   GROUP TICKET — DIRECT / INDIRECT ENHANCEMENTS  (v4)
   ============================================================ */

/* Outer card overrides for modern flat look */
.ticket-card {
	border: 1px solid #e2e8f0 !important;
	border-radius: 12px !important;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05) !important;
	padding: 1.5rem !important;
	background: #fff;
}

/* Flight type + trip type badges */
.ticket-type-badges {
	display: flex;
	gap: .5rem;
	flex-wrap: wrap;
	margin-left: auto;
}

.flight-type-badge {
	display: inline-flex;
	align-items: center;
	gap: .3rem;
	font-size: .6rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
	padding: .35rem .75rem;
	border-radius: 50px;
}

.flight-type-badge.direct {
	background: #e0f0e8;
	color: #1a6b3a;
}

.flight-type-badge.indirect {
	background: #fdf6e3;
	color: #b48529;
}

.flight-type-badge.two-way {
	background: #eef2ff;
	color: #4338ca;
}

/* Section label above departure / return timelines */
.route-section-label {
	font-size: .65rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .12em;
	color: #64748b;
	margin: .8rem 0 .4rem;
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

/* Vertical route timeline */
.route-timeline {
	display: flex;
	flex-direction: column;
	padding: .3rem 0;
}

.timeline-node {
	display: grid;
	grid-template-columns: 45px 12px 1fr;
	align-items: start;
	gap: 0 .75rem;
	position: relative;
}

.node-time {
	font-size: .8rem;
	font-weight: 700;
	color: #0f172a;
	text-align: right;
	padding-top: .15rem;
	line-height: 1.2;
}

.node-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #fff;
	margin-top: .3rem;
	flex-shrink: 0;
	position: relative;
	z-index: 2;
}

.timeline-node.origin .node-dot,
.timeline-node.destination .node-dot {
	background: #005aa9;
	border: 2px solid #005aa9;
}

.timeline-node.stop .node-dot {
	background: #fff;
	border: 2px solid #fccb08;
}

.node-info {
	display: flex;
	flex-direction: column;
	gap: .1rem;
	padding-bottom: .4rem;
}

.node-airport {
	font-size: .85rem;
	font-weight: 700;
	color: #0f172a;
}

.node-city {
	font-size: .72rem;
	color: #64748b;
}

.layover-badge {
	display: inline-flex;
	align-items: center;
	gap: .3rem;
	font-size: .6rem;
	font-weight: 700;
	background: #fdf6e3;
	color: #b48529;
	padding: .2rem .5rem;
	border-radius: 50px;
	margin-top: .2rem;
	width: fit-content;
}

.timeline-connector-wrap {
	grid-column: 2;
	width: 12px;
	display: flex;
	justify-content: center;
	padding: 2px 0;
}

.timeline-connector {
	width: 2px;
	background: #e2e8f0;
	min-height: 20px;
	flex-grow: 1;
}

/* Connecting flights panel */
.connecting-flights-panel {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	padding: .75rem 1rem;
	margin-top: .4rem;
	margin-bottom: 1rem;
}

.cf-title {
	font-size: .62rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: #64748b;
	margin-bottom: .6rem;
	display: flex;
	align-items: center;
	gap: 0.3rem;
}

.cf-row {
	display: flex;
	flex-wrap: wrap;
	gap: .4rem .8rem;
	align-items: center;
	padding: .3rem 0;
	font-size: .72rem;
}

.cf-flnum {
	font-weight: 700;
	color: #005aa9;
	background: #e0f2fe;
	padding: .15rem .5rem;
	border-radius: 6px;
	font-size: .65rem;
}

.cf-airline {
	color: #0f172a;
	font-weight: 700;
}

.cf-route {
	color: #64748b;
}

.cf-times {
	color: #94a3b8;
	font-size: .65rem;
}

/* Availability & Button overrides */
.btn-primary-modern {
	background: #005aa9 !important;
	color: #fff !important;
	border-radius: 50px !important;
	padding: 0.6rem 1.5rem !important;
	font-weight: 600 !important;
	font-size: 0.85rem !important;
	display: inline-flex !important;
	align-items: center !important;
	gap: 0.4rem !important;
	text-decoration: none !important;
	border: none !important;
	transition: background 0.2s !important;
}

.btn-primary-modern:hover {
	background: #004588 !important;
}

.modern-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.airline-identity > span.rounded-circle {
	width: 48px !important;
	height: 48px !important;
	background: #005aa9 !important;
	color: #fff !important;
	display: grid !important;
	place-items: center !important;
	font-weight: 700 !important;
	border-radius: 50% !important; /* Force circle */
}