/**
 * NepalTrip — Frontend Design System
 * Modern, GetYourGuide-inspired. Clean, image-forward, premium.
 *
 * @package NepalTrip
 */

/* ===================== Design Tokens ===================== */
:root {
	/* Brand — warm sunset terracotta */
	--nt-primary: #dc6b2f;
	--nt-primary-hover: #c2410c;
	--nt-primary-light: #fef3ed;
	--nt-primary-border: #f5d0b0;

	/* Neutrals */
	--nt-bg: #f8f7f4;
	--nt-surface: #ffffff;
	--nt-text: #1a1a1a;
	--nt-text-2: #4a4a4a;
	--nt-muted: #767676;
	--nt-faint: #b0b0b0;
	--nt-border: #e8e6e1;
	--nt-border-2: #f0eee9;

	/* Status */
	--nt-success: #0a8754;
	--nt-success-bg: #e6f4ef;
	--nt-warning: #b8860b;
	--nt-warning-bg: #fef9e7;
	--nt-danger: #c83737;
	--nt-danger-bg: #fce8e8;
	--nt-info: #2563eb;
	--nt-info-bg: #e8f0fe;

	/* Radius */
	--nt-r-sm: 8px;
	--nt-r-md: 12px;
	--nt-r-lg: 16px;
	--nt-r-xl: 20px;
	--nt-r-full: 999px;

	/* Shadow */
	--nt-sh-sm: 0 1px 2px rgba(0,0,0,0.05);
	--nt-sh-md: 0 4px 12px rgba(0,0,0,0.08);
	--nt-sh-lg: 0 12px 32px rgba(0,0,0,0.12);
	--nt-sh-xl: 0 20px 48px rgba(0,0,0,0.16);

	/* Spacing */
	--nt-gap: 1.5rem;

	/* Font */
	--nt-font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }

.nt-body {
	font-family: var(--nt-font);
	background: var(--nt-bg);
	color: var(--nt-text);
	line-height: 1.6;
}

.nt-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.nt-container-narrow { max-width: 800px; margin: 0 auto; padding: 0 1.5rem; }
.nt-muted { color: var(--nt-muted); }
.nt-text-2 { color: var(--nt-text-2); }
.nt-small { font-size: 0.8125rem; }
.nt-tiny { font-size: 0.75rem; }

/* ===================== Buttons ===================== */
.nt-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	background: var(--nt-primary);
	color: #fff;
	padding: 0.75rem 1.5rem;
	border-radius: var(--nt-r-full);
	border: none;
	font-family: inherit;
	font-weight: 600;
	font-size: 0.9375rem;
	cursor: pointer;
	text-decoration: none;
	transition: background 0.15s, box-shadow 0.15s, transform 0.1s;
	white-space: nowrap;
}
.nt-btn:hover { background: var(--nt-primary-hover); color: #fff; box-shadow: 0 4px 12px rgba(220,107,47,0.3); }
.nt-btn:active { transform: scale(0.98); }
.nt-btn-sm { padding: 0.5rem 1rem; font-size: 0.8125rem; }
.nt-btn-lg { padding: 0.9375rem 2rem; font-size: 1rem; }
.nt-btn-block { display: flex; width: 100%; }
.nt-btn-outline { background: transparent; color: var(--nt-primary); border: 1.5px solid var(--nt-primary-border); }
.nt-btn-outline:hover { background: var(--nt-primary-light); color: var(--nt-primary-hover); box-shadow: none; }
.nt-btn-ghost { background: transparent; color: var(--nt-text); }
.nt-btn-ghost:hover { background: var(--nt-border-2); color: var(--nt-text); box-shadow: none; }
.nt-btn-dark { background: var(--nt-text); color: #fff; }
.nt-btn-dark:hover { background: #000; color: #fff; }

/* ===================== Badges ===================== */
.nt-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	padding: 0.25rem 0.625rem;
	border-radius: var(--nt-r-full);
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}
.nt-badge-primary { background: var(--nt-primary-light); color: var(--nt-primary-hover); }
.nt-badge-success { background: var(--nt-success-bg); color: var(--nt-success); }
.nt-badge-warning { background: var(--nt-warning-bg); color: var(--nt-warning); }
.nt-badge-danger { background: var(--nt-danger-bg); color: var(--nt-danger); }
.nt-badge-info { background: var(--nt-info-bg); color: var(--nt-info); }
.nt-badge-dark { background: var(--nt-text); color: #fff; }
.nt-badge-amber { background: #fef3c7; color: #92400e; }

.nt-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	padding: 0.375rem 0.75rem;
	border-radius: var(--nt-r-full);
	font-size: 0.8125rem;
	font-weight: 600;
	background: var(--nt-surface);
	border: 1px solid var(--nt-border);
	color: var(--nt-text-2);
}

/* ===================== Star Rating ===================== */
.nt-stars { display: inline-flex; gap: 1px; color: #f5a623; font-size: 0.875rem; letter-spacing: 1px; }
.nt-stars-lg { font-size: 1.125rem; }
.nt-stars-sm { font-size: 0.75rem; }
.nt-star-input { font-size: 1.75rem; color: #d1d5db; cursor: pointer; transition: color 0.1s; }
.nt-star-input.active, .nt-star-input:hover { color: #f5a623; }

/* ===================== Trip Card ===================== */
.nepaltrip-grid { display: grid; gap: 1.5rem; }
.nepaltrip-cols-2 { grid-template-columns: repeat(2, 1fr); }
.nepaltrip-cols-3 { grid-template-columns: repeat(3, 1fr); }
.nepaltrip-cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .nepaltrip-cols-3, .nepaltrip-cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .nepaltrip-cols-2, .nepaltrip-cols-3, .nepaltrip-cols-4 { grid-template-columns: 1fr; } }

.nt-card {
	background: var(--nt-surface);
	border-radius: var(--nt-r-lg);
	overflow: hidden;
	box-shadow: var(--nt-sh-sm);
	transition: box-shadow 0.25s, transform 0.25s;
	height: 100%;
	display: flex;
	flex-direction: column;
}
.nt-card:hover { box-shadow: var(--nt-sh-lg); transform: translateY(-4px); }
.nt-card-link { text-decoration: none; color: inherit; display: flex; flex-direction: column; height: 100%; }
.nt-card-image { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--nt-border-2); }
.nt-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.nt-card:hover .nt-card-image img { transform: scale(1.06); }
.nt-card-badges { position: absolute; top: 0.75rem; left: 0.75rem; display: flex; flex-direction: column; gap: 0.375rem; z-index: 2; }
.nt-card-rating { position: absolute; bottom: 0.75rem; left: 0.75rem; background: rgba(255,255,255,0.95); backdrop-filter: blur(8px); padding: 0.25rem 0.5rem; border-radius: var(--nt-r-sm); font-size: 0.75rem; font-weight: 700; display: flex; align-items: center; gap: 0.25rem; }
.nt-card-body { padding: 1rem; display: flex; flex-direction: column; flex: 1; }
.nt-card-location { font-size: 0.75rem; color: var(--nt-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.25rem; display: flex; align-items: center; gap: 0.25rem; }
.nt-card-title { font-size: 1rem; font-weight: 700; line-height: 1.3; margin: 0 0 0.5rem; color: var(--nt-text); }
.nt-card-meta { display: flex; gap: 0.875rem; font-size: 0.75rem; color: var(--nt-muted); margin-bottom: 0.75rem; }
.nt-card-meta span { display: flex; align-items: center; gap: 0.25rem; }
.nt-card-footer { margin-top: auto; padding-top: 0.75rem; border-top: 1px solid var(--nt-border-2); display: flex; justify-content: space-between; align-items: flex-end; }
.nt-card-price-label { font-size: 0.6875rem; color: var(--nt-muted); }
.nt-card-price { font-size: 1.25rem; font-weight: 800; color: var(--nt-text); }
.nt-card-price-old { font-size: 0.75rem; color: var(--nt-muted); text-decoration: line-through; margin-right: 0.375rem; }

/* ===================== Search Form ===================== */
.nt-search { background: var(--nt-surface); border-radius: var(--nt-r-lg); padding: 0.625rem; box-shadow: var(--nt-sh-md); display: grid; grid-template-columns: 2fr 1.2fr 1fr auto; gap: 0.625rem; }
@media (max-width: 768px) { .nt-search { grid-template-columns: 1fr; } }
.nt-search-field { position: relative; }
.nt-search-field svg, .nt-search-field .icon { position: absolute; left: 0.875rem; top: 50%; transform: translateY(-50%); color: var(--nt-muted); pointer-events: none; }
.nt-search input, .nt-search select {
	width: 100%; padding: 0.75rem 0.75rem 0.75rem 2.25rem; border: 1px solid var(--nt-border); border-radius: var(--nt-r-md);
	font-family: inherit; font-size: 0.9375rem; background: var(--nt-surface); color: var(--nt-text);
}
.nt-search input:focus, .nt-search select:focus { outline: none; border-color: var(--nt-primary); box-shadow: 0 0 0 3px rgba(220,107,47,0.12); }
.nt-search select { padding-left: 0.75rem; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M3 4.5l3 3 3-3' stroke='%23767676' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.75rem center; }

/* ===================== Single Trip — Hero ===================== */
.nt-single { background: var(--nt-bg); padding-bottom: 4rem; }

.nt-breadcrumb { padding: 1rem 0; font-size: 0.8125rem; }
.nt-breadcrumb a { color: var(--nt-muted); text-decoration: none; }
.nt-breadcrumb a:hover { color: var(--nt-primary); }
.nt-breadcrumb span { margin: 0 0.5rem; color: var(--nt-faint); }

.nt-hero { position: relative; border-radius: var(--nt-r-xl); overflow: hidden; margin-bottom: 1.5rem; }
.nt-hero-main { position: relative; aspect-ratio: 21/9; background: var(--nt-border-2); }
.nt-hero-main img { width: 100%; height: 100%; object-fit: cover; }
.nt-hero-thumbs { position: absolute; bottom: 1rem; right: 1rem; display: flex; gap: 0.5rem; }
.nt-hero-thumb { width: 64px; height: 64px; border-radius: var(--nt-r-sm); overflow: hidden; border: 2px solid rgba(255,255,255,0.6); cursor: pointer; transition: transform 0.2s; }
.nt-hero-thumb:hover { transform: scale(1.05); }
.nt-hero-thumb img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 768px) { .nt-hero-main { aspect-ratio: 4/3; } .nt-hero-thumbs { display: none; } }

/* ===================== Trip Header ===================== */
.nt-trip-header { margin-bottom: 1.5rem; }
.nt-trip-header h1 { font-size: 2rem; font-weight: 800; line-height: 1.2; margin: 0 0 0.5rem; }
@media (max-width: 768px) { .nt-trip-header h1 { font-size: 1.5rem; } }
.nt-trip-subtitle { font-size: 1.0625rem; color: var(--nt-text-2); margin: 0 0 0.75rem; }
.nt-trip-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; font-size: 0.875rem; color: var(--nt-text-2); }
.nt-trip-meta-item { display: flex; align-items: center; gap: 0.375rem; }
.nt-trip-meta-rating { font-weight: 700; color: var(--nt-text); }

/* ===================== Sticky Nav ===================== */
.nt-sticky-nav { position: sticky; top: 0; z-index: 40; background: rgba(255,255,255,0.96); backdrop-filter: blur(12px); border-bottom: 1px solid var(--nt-border); margin: 0 -1.5rem 1.5rem; padding: 0 1.5rem; }
.nt-nav { display: flex; gap: 0.25rem; overflow-x: auto; scrollbar-width: none; }
.nt-nav::-webkit-scrollbar { display: none; }
.nt-nav-item { padding: 1rem 0.875rem; font-size: 0.875rem; font-weight: 600; color: var(--nt-muted); text-decoration: none; white-space: nowrap; border-bottom: 2px solid transparent; transition: color 0.15s, border-color 0.15s; }
.nt-nav-item:hover, .nt-nav-item.active { color: var(--nt-text); border-bottom-color: var(--nt-primary); }

/* ===================== Layout Grid ===================== */
.nt-layout { display: grid; grid-template-columns: 1fr 340px; gap: 2rem; align-items: start; }
@media (max-width: 1024px) { .nt-layout { grid-template-columns: 1fr; } }

/* ===================== Sections ===================== */
.nt-section { background: var(--nt-surface); border-radius: var(--nt-r-lg); padding: 1.75rem; margin-bottom: 1.25rem; box-shadow: var(--nt-sh-sm); scroll-margin-top: 80px; }
@media (max-width: 600px) { .nt-section { padding: 1.25rem; } }
.nt-section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.nt-section-title { font-size: 1.25rem; font-weight: 800; margin: 0 0 1rem; }
.nt-section-title .icon { color: var(--nt-primary); margin-right: 0.5rem; }
.nt-overview-text { color: var(--nt-text-2); line-height: 1.7; }

/* ===================== Quick Facts ===================== */
.nt-facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; margin-top: 1.25rem; }
@media (max-width: 600px) { .nt-facts { grid-template-columns: repeat(2, 1fr); } }
.nt-fact { padding: 1rem; border: 1px solid var(--nt-border); border-radius: var(--nt-r-md); text-align: center; }
.nt-fact-icon { font-size: 1.25rem; margin-bottom: 0.375rem; }
.nt-fact-label { font-size: 0.6875rem; color: var(--nt-muted); text-transform: uppercase; letter-spacing: 0.04em; font-weight: 600; }
.nt-fact-value { font-size: 0.875rem; font-weight: 700; margin-top: 0.125rem; }

/* ===================== Highlights ===================== */
.nt-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 0.625rem; }
@media (max-width: 600px) { .nt-highlights { grid-template-columns: 1fr; } }
.nt-highlight { display: flex; align-items: flex-start; gap: 0.625rem; padding: 0.875rem; background: var(--nt-primary-light); border-radius: var(--nt-r-md); font-size: 0.875rem; line-height: 1.5; }
.nt-highlight-icon { flex-shrink: 0; width: 24px; height: 24px; background: var(--nt-primary); color: #fff; border-radius: 50%; display: grid; place-items: center; font-size: 0.75rem; font-weight: 700; }

/* ===================== Itinerary Timeline ===================== */
.nt-itinerary { position: relative; }
.nt-itinerary::before { content: ''; position: absolute; left: 19px; top: 20px; bottom: 20px; width: 2px; background: var(--nt-border); }
.nt-day { position: relative; padding-left: 3rem; padding-bottom: 1.25rem; }
.nt-day:last-child { padding-bottom: 0; }
.nt-day-marker { position: absolute; left: 0; top: 0; width: 40px; height: 40px; background: var(--nt-surface); border: 2px solid var(--nt-primary); border-radius: 50%; display: grid; place-items: center; font-weight: 800; font-size: 0.875rem; color: var(--nt-primary); z-index: 1; }
.nt-day-card { background: var(--nt-bg); border-radius: var(--nt-r-md); overflow: hidden; border: 1px solid var(--nt-border); }
.nt-day-card summary { padding: 1rem 1.25rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 0.75rem; }
.nt-day-card summary::-webkit-details-marker { display: none; }
.nt-day-card summary::after { content: '⌄'; font-size: 1.25rem; color: var(--nt-muted); transition: transform 0.2s; }
.nt-day-card[open] summary::after { transform: rotate(180deg); }
.nt-day-title { font-weight: 700; font-size: 0.9375rem; flex: 1; }
.nt-day-alt { font-size: 0.75rem; color: var(--nt-muted); font-weight: 600; white-space: nowrap; }
.nt-day-body { padding: 0 1.25rem 1.25rem; }
.nt-day-body p { margin: 0 0 0.75rem; color: var(--nt-text-2); font-size: 0.875rem; line-height: 1.65; }
.nt-day-tags { display: flex; flex-wrap: wrap; gap: 0.375rem; margin-top: 0.5rem; }
.nt-day-tag { font-size: 0.6875rem; padding: 0.25rem 0.5rem; background: var(--nt-surface); border: 1px solid var(--nt-border); border-radius: var(--nt-r-full); color: var(--nt-text-2); font-weight: 600; display: inline-flex; align-items: center; gap: 0.25rem; }
.nt-day-highlights { margin-top: 0.75rem; padding: 0.75rem; background: var(--nt-warning-bg); border-radius: var(--nt-r-sm); font-size: 0.8125rem; }
.nt-day-highlights strong { color: var(--nt-warning); display: block; margin-bottom: 0.25rem; font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.04em; }
.nt-day-notes { margin-top: 0.5rem; font-size: 0.75rem; color: var(--nt-muted); font-style: italic; }

/* ===================== Elevation Chart ===================== */
.nt-elevation { border: 1px solid var(--nt-border); border-radius: var(--nt-r-md); padding: 1.25rem; margin-top: 1.25rem; }
.nt-elevation-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.nt-elevation-head h3 { margin: 0; font-size: 1rem; font-weight: 700; }
.nt-elevation-head .nt-muted { font-size: 0.75rem; margin-top: 0.125rem; }
.nt-unit-toggle { display: flex; background: var(--nt-bg); border-radius: var(--nt-r-full); padding: 2px; }
.nt-unit-btn { padding: 0.3125rem 0.875rem; background: transparent; border: none; font-weight: 600; font-size: 0.75rem; cursor: pointer; border-radius: var(--nt-r-full); color: var(--nt-muted); transition: all 0.15s; }
.nt-unit-btn.active { background: var(--nt-surface); color: var(--nt-text); box-shadow: var(--nt-sh-sm); }
.nt-elevation-svg { width: 100%; height: auto; display: block; overflow: visible; }
.nt-elev-label { fill: var(--nt-muted); font-size: 10px; font-weight: 600; }
.nt-elev-xlabel { fill: var(--nt-faint); font-size: 10px; font-weight: 600; }

/* ===================== Departures ===================== */
.nt-departures { border: 1px solid var(--nt-border); border-radius: var(--nt-r-md); overflow: hidden; }
.nt-dep-row { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr auto; gap: 0.75rem; padding: 0.875rem 1rem; align-items: center; border-bottom: 1px solid var(--nt-border-2); font-size: 0.875rem; }
.nt-dep-row:last-child { border-bottom: none; }
.nt-dep-row:hover { background: var(--nt-bg); }
.nt-dep-date { font-weight: 700; }
.nt-dep-date small { display: block; font-weight: 500; color: var(--nt-muted); font-size: 0.75rem; }
.nt-dep-price { font-weight: 800; color: var(--nt-text); font-size: 1rem; }
@media (max-width: 600px) { .nt-dep-row { grid-template-columns: 1fr auto; gap: 0.5rem; } .nt-dep-row > *:nth-child(2), .nt-dep-row > *:nth-child(3) { display: none; } }

.nt-dep-status { display: inline-flex; align-items: center; gap: 0.25rem; padding: 0.1875rem 0.5rem; border-radius: var(--nt-r-full); font-size: 0.6875rem; font-weight: 700; }
.nt-dep-status::before { content: ''; width: 6px; height: 6px; border-radius: 50%; }
.nt-dep-available { background: var(--nt-success-bg); color: var(--nt-success); }
.nt-dep-available::before { background: var(--nt-success); }
.nt-dep-limited { background: var(--nt-warning-bg); color: var(--nt-warning); }
.nt-dep-limited::before { background: var(--nt-warning); }
.nt-dep-guaranteed { background: var(--nt-info-bg); color: var(--nt-info); }
.nt-dep-guaranteed::before { background: var(--nt-info); }
.nt-dep-full { background: var(--nt-danger-bg); color: var(--nt-danger); }
.nt-dep-full::before { background: var(--nt-danger); }

/* ===================== Pricing Cards ===================== */
.nt-pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .nt-pricing-grid { grid-template-columns: 1fr; } }
.nt-price-card { border: 1px solid var(--nt-border); border-radius: var(--nt-r-md); padding: 1.25rem; }
.nt-price-card-featured { border-color: var(--nt-primary-border); background: var(--nt-primary-light); }
.nt-price-big { font-size: 2.25rem; font-weight: 800; color: var(--nt-text); line-height: 1; }
.nt-price-old { font-size: 0.875rem; color: var(--nt-muted); text-decoration: line-through; margin-right: 0.375rem; }
.nt-price-unit { font-size: 0.75rem; color: var(--nt-muted); margin-top: 0.25rem; }
.nt-price-line { display: flex; justify-content: space-between; padding: 0.375rem 0; font-size: 0.875rem; }
.nt-discount-tier { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 0.75rem; background: var(--nt-surface); border-radius: var(--nt-r-sm); margin-bottom: 0.375rem; font-size: 0.8125rem; }

/* ===================== Includes / Excludes ===================== */
.nt-inc-exc { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .nt-inc-exc { grid-template-columns: 1fr; } }
.nt-inc-list, .nt-exc-list { list-style: none; padding: 0; margin: 0; }
.nt-inc-list li, .nt-exc-list li { padding: 0.5rem 0; font-size: 0.875rem; display: flex; align-items: flex-start; gap: 0.5rem; border-bottom: 1px solid var(--nt-border-2); }
.nt-inc-list li:last-child, .nt-exc-list li:last-child { border-bottom: none; }
.nt-inc-icon { color: var(--nt-success); flex-shrink: 0; margin-top: 2px; }
.nt-exc-icon { color: var(--nt-danger); flex-shrink: 0; margin-top: 2px; }

/* ===================== Trip Options ===================== */
.nt-options { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0.75rem; }
.nt-option { position: relative; display: block; padding: 1rem; border: 2px solid var(--nt-border); border-radius: var(--nt-r-md); cursor: pointer; transition: border-color 0.15s, background 0.15s; }
.nt-option:hover { border-color: var(--nt-primary-border); }
.nt-option input { position: absolute; opacity: 0; }
.nt-option.checked { border-color: var(--nt-primary); background: var(--nt-primary-light); }
.nt-option-name { font-weight: 700; font-size: 0.9375rem; margin-bottom: 0.25rem; }
.nt-option-desc { font-size: 0.75rem; color: var(--nt-muted); margin-bottom: 0.5rem; line-height: 1.4; }
.nt-option-price { font-weight: 800; color: var(--nt-primary); font-size: 1rem; }

/* ===================== Extra Services ===================== */
.nt-services { display: grid; grid-template-columns: 1fr 1fr; gap: 0.625rem; }
@media (max-width: 600px) { .nt-services { grid-template-columns: 1fr; } }
.nt-service { display: flex; justify-content: space-between; align-items: center; padding: 0.875rem; border: 1px solid var(--nt-border); border-radius: var(--nt-r-md); gap: 0.75rem; }
.nt-service-name { font-weight: 700; font-size: 0.875rem; }
.nt-service-desc { font-size: 0.75rem; color: var(--nt-muted); margin-top: 0.125rem; }
.nt-service-price { font-weight: 700; color: var(--nt-primary); white-space: nowrap; }

/* ===================== Guides ===================== */
.nt-guides { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; }
.nt-guide { display: flex; gap: 1rem; padding: 1.25rem; border: 1px solid var(--nt-border); border-radius: var(--nt-r-md); transition: box-shadow 0.2s; }
.nt-guide:hover { box-shadow: var(--nt-sh-md); }
.nt-guide-photo { width: 80px; height: 80px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: var(--nt-border-2); }
.nt-guide-photo img { width: 100%; height: 100%; object-fit: cover; }
.nt-guide-placeholder { width: 100%; height: 100%; display: grid; place-items: center; font-size: 2rem; color: var(--nt-faint); }
.nt-guide-info { flex: 1; min-width: 0; }
.nt-guide-name { font-weight: 800; font-size: 1rem; margin: 0 0 0.125rem; }
.nt-guide-role { font-size: 0.8125rem; color: var(--nt-primary); font-weight: 600; margin-bottom: 0.375rem; }
.nt-guide-meta { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.5rem; }
.nt-guide-meta span { font-size: 0.6875rem; color: var(--nt-muted); display: flex; align-items: center; gap: 0.25rem; }
.nt-guide-bio { font-size: 0.8125rem; color: var(--nt-text-2); line-height: 1.55; margin: 0; }

/* ===================== Map ===================== */
.nt-map { border: 1px solid var(--nt-border); border-radius: var(--nt-r-md); overflow: hidden; aspect-ratio: 16/8; background: linear-gradient(135deg, #f0fdf4, #fff7ed); }
.nt-map svg { width: 100%; height: 100%; }
.nt-map-empty { display: grid; place-items: center; height: 100%; text-align: center; color: var(--nt-muted); }
.nt-map-empty .icon { font-size: 2.5rem; margin-bottom: 0.5rem; }
.nt-map-legend { display: flex; flex-wrap: wrap; gap: 1.25rem; margin-top: 0.75rem; font-size: 0.75rem; color: var(--nt-muted); }

/* ===================== Reviews ===================== */
.nt-reviews-summary { display: flex; gap: 2rem; padding: 1.5rem; background: var(--nt-bg); border-radius: var(--nt-r-md); margin-bottom: 1.25rem; flex-wrap: wrap; align-items: center; }
.nt-reviews-score { text-align: center; min-width: 120px; }
.nt-reviews-score-num { font-size: 3rem; font-weight: 800; color: var(--nt-text); line-height: 1; }
.nt-reviews-score-label { font-size: 0.8125rem; color: var(--nt-muted); margin-top: 0.25rem; }
.nt-reviews-breakdown { flex: 1; min-width: 200px; display: flex; flex-direction: column; gap: 0.375rem; }
.nt-breakdown { display: flex; align-items: center; gap: 0.625rem; font-size: 0.75rem; }
.nt-breakdown-label { width: 28px; font-weight: 600; color: var(--nt-muted); }
.nt-breakdown-bar { flex: 1; height: 8px; background: var(--nt-border-2); border-radius: 4px; overflow: hidden; }
.nt-breakdown-fill { height: 100%; background: #f5a623; border-radius: 4px; transition: width 0.4s; }
.nt-breakdown-count { width: 28px; text-align: right; color: var(--nt-muted); }

.nt-review { padding: 1.25rem; border: 1px solid var(--nt-border); border-radius: var(--nt-r-md); margin-bottom: 0.75rem; }
.nt-review-head { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
.nt-review-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--nt-primary-light); color: var(--nt-primary); display: grid; place-items: center; font-weight: 700; font-size: 0.875rem; flex-shrink: 0; }
.nt-review-author { font-weight: 700; font-size: 0.875rem; }
.nt-review-date { font-size: 0.75rem; color: var(--nt-muted); }
.nt-review-title { font-weight: 700; font-size: 0.9375rem; margin: 0.375rem 0 0.25rem; }
.nt-review-text { font-size: 0.875rem; color: var(--nt-text-2); line-height: 1.6; margin: 0; }

/* Review form */
.nt-review-form { margin-top: 1rem; padding: 1.25rem; background: var(--nt-bg); border-radius: var(--nt-r-md); }
.nt-input { width: 100%; padding: 0.75rem 0.875rem; border: 1px solid var(--nt-border); border-radius: var(--nt-r-sm); font-family: inherit; font-size: 0.9375rem; background: var(--nt-surface); color: var(--nt-text); box-sizing: border-box; }
.nt-input:focus { outline: none; border-color: var(--nt-primary); box-shadow: 0 0 0 3px rgba(220,107,47,0.12); }
.nt-field { margin-bottom: 0.75rem; }
.nt-label { display: block; font-weight: 600; font-size: 0.8125rem; margin-bottom: 0.375rem; color: var(--nt-text); }

/* ===================== FAQ ===================== */
.nt-faqs { display: flex; flex-direction: column; gap: 0.5rem; }
.nt-faq { border: 1px solid var(--nt-border); border-radius: var(--nt-r-md); overflow: hidden; }
.nt-faq summary { padding: 1rem 1.25rem; cursor: pointer; font-weight: 600; font-size: 0.9375rem; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 0.5rem; }
.nt-faq summary::-webkit-details-marker { display: none; }
.nt-faq summary::after { content: '+'; font-size: 1.5rem; color: var(--nt-primary); font-weight: 300; transition: transform 0.2s; }
.nt-faq[open] summary::after { content: '−'; }
.nt-faq-answer { padding: 0 1.25rem 1.25rem; color: var(--nt-text-2); font-size: 0.875rem; line-height: 1.65; }

/* ===================== Booking Sidebar ===================== */
.nt-sidebar { position: sticky; top: 80px; }
@media (max-width: 1024px) { .nt-sidebar { position: static; } }
.nt-booking-widget { background: var(--nt-surface); border: 1px solid var(--nt-border); border-radius: var(--nt-r-lg); padding: 1.5rem; box-shadow: var(--nt-sh-md); }
.nt-booking-price-row { display: flex; align-items: baseline; gap: 0.5rem; margin-bottom: 0.25rem; }
.nt-booking-price { font-size: 2rem; font-weight: 800; color: var(--nt-text); line-height: 1; }
.nt-booking-price-unit { font-size: 0.8125rem; color: var(--nt-muted); }
.nt-booking-rating { display: flex; align-items: center; gap: 0.25rem; font-size: 0.8125rem; color: var(--nt-muted); margin-bottom: 1rem; }
.nt-booking-divider { height: 1px; background: var(--nt-border); margin: 1rem 0; }
.nt-booking-fact { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 0; font-size: 0.875rem; }
.nt-booking-fact-label { color: var(--nt-muted); display: flex; align-items: center; gap: 0.375rem; }
.nt-booking-fact-value { font-weight: 600; }
.nt-booking-trust { display: flex; align-items: center; gap: 0.375rem; font-size: 0.75rem; color: var(--nt-success); margin-top: 0.75rem; padding: 0.625rem; background: var(--nt-success-bg); border-radius: var(--nt-r-sm); }

/* ===================== Booking Modal ===================== */
.nt-modal-bg { position: fixed; inset: 0; background: rgba(26,26,26,0.6); backdrop-filter: blur(4px); z-index: 1000; display: grid; place-items: center; padding: 1rem; overflow-y: auto; }
.nt-modal { background: var(--nt-surface); border-radius: var(--nt-r-xl); max-width: 560px; width: 100%; max-height: 90vh; overflow-y: auto; box-shadow: var(--nt-sh-xl); }
.nt-modal-head { padding: 1.5rem; border-bottom: 1px solid var(--nt-border); position: relative; }
.nt-modal-head h3 { margin: 0; font-size: 1.25rem; font-weight: 800; }
.nt-modal-head p { margin: 0.25rem 0 0; font-size: 0.8125rem; color: var(--nt-muted); }
.nt-modal-close { position: absolute; top: 1rem; right: 1rem; width: 32px; height: 32px; border-radius: 50%; background: var(--nt-bg); border: none; cursor: pointer; font-size: 1rem; display: grid; place-items: center; color: var(--nt-muted); }
.nt-modal-close:hover { background: var(--nt-border-2); color: var(--nt-text); }
.nt-modal-body { padding: 1.5rem; }
.nt-modal-foot { padding: 1rem 1.5rem; border-top: 1px solid var(--nt-border); display: flex; justify-content: space-between; align-items: center; gap: 1rem; }

.nt-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.625rem; }
.nt-form-row-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.625rem; }
@media (max-width: 500px) { .nt-form-row, .nt-form-row-3 { grid-template-columns: 1fr; } }

.nt-counter { display: flex; align-items: center; justify-content: space-between; padding: 0.5rem 0.5rem 0.5rem 0.875rem; border: 1px solid var(--nt-border); border-radius: var(--nt-r-sm); }
.nt-counter-btn { width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--nt-border); background: var(--nt-surface); cursor: pointer; font-size: 1.125rem; color: var(--nt-text); display: grid; place-items: center; }
.nt-counter-btn:hover { border-color: var(--nt-primary); color: var(--nt-primary); }
.nt-counter-val { font-weight: 700; }

.nt-price-summary { background: var(--nt-bg); border-radius: var(--nt-r-md); padding: 1rem; margin: 0.75rem 0; }
.nt-price-line { display: flex; justify-content: space-between; padding: 0.25rem 0; font-size: 0.875rem; }
.nt-price-line-total { border-top: 1px solid var(--nt-border); margin-top: 0.375rem; padding-top: 0.625rem; font-weight: 800; font-size: 1.0625rem; }
.nt-price-line-total .nt-price-line-value { color: var(--nt-primary); }

.nt-success { text-align: center; padding: 2rem 1.5rem; }
.nt-success-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--nt-success-bg); color: var(--nt-success); display: grid; place-items: center; font-size: 2rem; margin: 0 auto 1rem; }
.nt-success h3 { font-size: 1.5rem; font-weight: 800; margin: 0 0 0.5rem; }
.nt-success-num { display: inline-block; padding: 0.375rem 1rem; background: var(--nt-primary-light); color: var(--nt-primary); border-radius: var(--nt-r-full); font-weight: 800; margin: 0.5rem 0; }

/* ===================== Mobile Bar ===================== */
.nt-mobile-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: rgba(255,255,255,0.98); backdrop-filter: blur(12px); border-top: 1px solid var(--nt-border); padding: 0.75rem 1rem; z-index: 50; align-items: center; justify-content: space-between; gap: 1rem; box-shadow: 0 -4px 16px rgba(0,0,0,0.06); }
@media (max-width: 1024px) { .nt-mobile-bar { display: flex; } .nt-single { padding-bottom: 5rem; } }
.nt-mobile-price { font-size: 1.25rem; font-weight: 800; }
.nt-mobile-price-old { font-size: 0.75rem; color: var(--nt-muted); text-decoration: line-through; }

/* ===================== Archive / Listing ===================== */
.nt-archive-head { background: var(--nt-surface); border-bottom: 1px solid var(--nt-border); padding: 2rem 0; margin-bottom: 2rem; }
.nt-archive-head h1 { font-size: 1.75rem; font-weight: 800; margin: 0 0 0.5rem; }
.nt-archive-head p { color: var(--nt-muted); margin: 0; max-width: 600px; }

.nt-filters { background: var(--nt-surface); border-radius: var(--nt-r-lg); padding: 1.25rem; box-shadow: var(--nt-sh-sm); }
.nt-filter-group { margin-bottom: 1.25rem; }
.nt-filter-group:last-child { margin-bottom: 0; }
.nt-filter-label { font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--nt-muted); margin-bottom: 0.5rem; }
.nt-filter-option { display: flex; align-items: center; gap: 0.5rem; padding: 0.375rem 0; font-size: 0.875rem; cursor: pointer; }
.nt-filter-option input { accent-color: var(--nt-primary); }
.nt-filter-count { margin-left: auto; font-size: 0.75rem; color: var(--nt-faint); }

/* ===================== Dashboard ===================== */
.nt-dash { max-width: 800px; margin: 2rem auto; padding: 0 1.5rem; }
.nt-dash-lookup { display: flex; gap: 0.625rem; margin-bottom: 1.5rem; }
.nt-dash-lookup input { flex: 1; }
.nt-dash-booking { background: var(--nt-surface); border: 1px solid var(--nt-border); border-radius: var(--nt-r-md); padding: 1.25rem; margin-bottom: 0.75rem; box-shadow: var(--nt-sh-sm); }
.nt-dash-booking-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.5rem; }
.nt-dash-booking-num { font-weight: 800; }
.nt-dash-booking-trip { font-weight: 600; margin: 0.25rem 0; }
.nt-dash-booking-date { font-size: 0.8125rem; color: var(--nt-muted); }
.nt-dash-progress { height: 6px; background: var(--nt-border-2); border-radius: 3px; overflow: hidden; margin: 0.625rem 0; }
.nt-dash-progress-bar { height: 100%; background: var(--nt-success); border-radius: 3px; }

/* ===================== Pagination ===================== */
.nepaltrip-pagination { margin-top: 2.5rem; text-align: center; }
.nepaltrip-pagination .page-numbers { display: inline-block; padding: 0.5rem 0.875rem; margin: 0 0.125rem; border: 1px solid var(--nt-border); border-radius: var(--nt-r-sm); text-decoration: none; color: var(--nt-text); font-size: 0.875rem; font-weight: 600; transition: all 0.15s; }
.nepaltrip-pagination .page-numbers:hover { border-color: var(--nt-primary); color: var(--nt-primary); }
.nepaltrip-pagination .page-numbers.current { background: var(--nt-primary); color: #fff; border-color: var(--nt-primary); }

/* ===================== Utility ===================== */
.nt-hidden { display: none !important; }
.nt-flex { display: flex; }
.nt-items-center { align-items: center; }
.nt-justify-between { justify-content: space-between; }
.nt-gap-1 { gap: 0.25rem; }
.nt-gap-2 { gap: 0.5rem; }
.nt-gap-3 { gap: 0.75rem; }
.nt-mt-2 { margin-top: 0.5rem; }
.nt-mt-3 { margin-top: 0.75rem; }
.nt-mt-4 { margin-top: 1rem; }
.nt-mb-2 { margin-bottom: 0.5rem; }
.nt-mb-3 { margin-bottom: 0.75rem; }
.nt-mb-4 { margin-bottom: 1rem; }
.nt-text-center { text-align: center; }
.nt-divider { height: 1px; background: var(--nt-border); margin: 1rem 0; }
