/* =========================================================================
   Iconic Travel — Visa section styles (Navy + Gold dashboard style)
   Mobile-first. Breakpoints: 600 / 900 / 1200.
   Uses global CSS vars defined elsewhere:
   --primary, --primary-dark, --accent, --accent-dark,
   --text, --text-muted, --bg, --bg-soft, --border
   ========================================================================= */

/* ---------- Local scoped utilities ---------------------------------- */
.visa-page,
.visa-single,
.visa-archive {
	color: var(--text);
}

.visa-page .container,
.visa-single .container,
.visa-archive .container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ---------- Buttons (scoped, won't override globals) ---------------- */
.visa-page .btn,
.visa-single .btn,
.visa-archive .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 18px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 14px;
	line-height: 1;
	text-decoration: none;
	border: 1.5px solid transparent;
	cursor: pointer;
	transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
	white-space: nowrap;
}
.visa-page .btn:hover,
.visa-single .btn:hover,
.visa-archive .btn:hover {
	transform: translateY(-2px);
}

.btn-primary {
	background: var(--primary);
	color: #fff;
	border-color: var(--primary);
}
.btn-primary:hover {
	background: var(--primary-dark);
	border-color: var(--primary-dark);
	box-shadow: 0 8px 20px rgba(10,37,64,.25);
}

.btn-accent {
	background: var(--accent);
	color: #0A1929;
	border-color: var(--accent);
}
.btn-accent:hover {
	background: var(--accent-dark);
	border-color: var(--accent-dark);
	color: #fff;
	box-shadow: 0 8px 20px rgba(212,162,76,.3);
}

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

.btn-block {
	display: flex;
	width: 100%;
}

/* ---------- HERO ----------------------------------------------------- */
.visa-hero {
	position: relative;
	background: linear-gradient(135deg, #0A2540 0%, #061A30 100%);
	color: #fff;
	min-height: 40vh;
	padding: 56px 0 48px;
	overflow: hidden;
	display: flex;
	align-items: center;
}
.visa-hero::before {
	content: "";
	position: absolute;
	top: -120px;
	right: -120px;
	width: 360px;
	height: 360px;
	background: radial-gradient(circle, rgba(255,255,255,.08), transparent 65%);
	border-radius: 50%;
	pointer-events: none;
}
.visa-hero::after {
	content: "";
	position: absolute;
	bottom: -100px;
	left: -80px;
	width: 280px;
	height: 280px;
	background: radial-gradient(circle, rgba(212,162,76,.18), transparent 65%);
	border-radius: 50%;
	pointer-events: none;
}
.visa-hero__inner {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	width: 100%;
}
.visa-hero__content {
	max-width: 720px;
}
.visa-hero__eyebrow {
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--accent-light);
	background: rgba(212,162,76,.12);
	padding: 5px 12px;
	border-radius: 999px;
	margin-bottom: 16px;
}
.visa-hero__eyebrow a { color: inherit; text-decoration: none; }
.visa-hero__title {
	font-size: clamp(26px, 4vw, 40px);
	line-height: 1.1;
	margin: 0 0 12px;
	font-weight: 800;
	letter-spacing: -.02em;
}
.visa-hero__sub {
	font-size: clamp(14px, 1.5vw, 17px);
	color: rgba(255,255,255,.88);
	margin: 0 0 22px;
	max-width: 560px;
	line-height: 1.55;
}
.visa-hero__cta {
	font-size: 15px;
}

/* Single visa hero variant */
.visa-hero--single .visa-hero__flagrow {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 10px;
}
.visa-hero__flag {
	font-size: 40px;
	line-height: 1;
	width: 64px;
	height: 64px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(255,255,255,.12);
	border: 1px solid rgba(255,255,255,.22);
	border-radius: 16px;
	backdrop-filter: blur(6px);
}
.visa-hero__price {
	margin: 8px 0 0;
	display: inline-block;
	font-size: 17px;
	font-weight: 700;
	color: #0A1929;
	background: var(--accent);
	padding: 8px 14px;
	border-radius: 8px;
}
.visa-hero--archive {
	min-height: 36vh;
	padding: 48px 0 40px;
}

/* ---------- Section heads ------------------------------------------- */
.section-head {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 32px;
}
.section-head__title {
	font-size: clamp(22px, 2.6vw, 28px);
	font-weight: 800;
	color: var(--primary);
	margin: 0 0 8px;
	letter-spacing: -.01em;
	position: relative;
	display: inline-block;
	padding-bottom: 10px;
}
.section-head__title::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 48px;
	height: 3px;
	background: linear-gradient(90deg, var(--accent), var(--accent-dark));
	border-radius: 2px;
}
.section-head__sub {
	margin: 10px 0 0;
	font-size: 14px;
	color: var(--text-muted);
	line-height: 1.6;
}
.section-foot {
	text-align: center;
	margin-top: 32px;
}

/* ---------- Region sections ----------------------------------------- */
.region-section {
	padding: 72px 0;
	background: var(--bg);
}
.region-section--soft {
	background: var(--bg-soft);
}

/* ---------- Visa Grid ------------------------------------------------ */
.visa-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

@media (min-width: 600px) {
	.visa-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (min-width: 900px) {
	.visa-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* ---------- Visa Card (dashboard density) --------------------------- */
.visa-card {
	position: relative;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
	overflow: hidden;
}
.visa-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--accent), var(--accent-dark));
	opacity: 0;
	transition: opacity .2s ease;
}
.visa-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 24px -8px rgba(10,37,64,0.15);
	border-color: var(--primary-light);
}
.visa-card:hover::before {
	opacity: 1;
}

.visa-card__flag-wrap {
	display: flex;
	justify-content: center;
	margin-bottom: 4px;
}
.visa-card__flag {
	width: 48px;
	height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	line-height: 1;
	background: var(--bg-soft);
	border: 1px solid var(--border);
	border-radius: 50%;
	transition: transform .2s ease;
}
.visa-card:hover .visa-card__flag {
	transform: scale(1.06);
}

.visa-card__region {
	display: inline-block;
	width: fit-content;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: var(--primary);
	background: rgba(10,37,64,.07);
	padding: 3px 9px;
	border-radius: 999px;
}

.visa-card__title {
	margin: 2px 0 0;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.25;
	color: var(--text);
}
.visa-card__title a {
	color: inherit;
	text-decoration: none;
}
.visa-card__title a:hover {
	color: var(--primary);
}

.visa-card__meta {
	list-style: none;
	margin: 2px 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 5px;
	font-size: 12.5px;
	color: var(--text-muted);
}
.visa-card__meta li {
	display: flex;
	align-items: center;
	gap: 8px;
}
.visa-card__meta strong {
	color: var(--text);
	font-weight: 600;
}

.visa-card__price {
	margin-top: auto;
	padding-top: 8px;
	font-family: 'Fraunces', Georgia, serif;
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--accent);
	letter-spacing: -.01em;
}

.visa-card__cta {
	margin-top: 2px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 16px;
	border: 1.5px solid var(--primary);
	color: var(--primary);
	background: transparent;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	font-size: 13px;
	width: fit-content;
	transition: background .2s ease, color .2s ease, gap .2s ease;
}
.visa-card__cta:hover {
	background: var(--primary);
	color: #fff;
	gap: 10px;
}

/* Tour variant + placeholder */
.visa-card--tour .visa-card__thumb {
	margin: -20px -20px 0;
	overflow: hidden;
}
.visa-card--tour .visa-card__thumb img {
	width: 100%;
	height: 160px;
	object-fit: cover;
	transition: transform .3s ease;
}
.visa-card--tour:hover .visa-card__thumb img {
	transform: scale(1.04);
}
.visa-card__excerpt {
	margin: 0;
	font-size: 13.5px;
	color: var(--text-muted);
	line-height: 1.55;
}

/* ---------- Why-us / Trust grid ------------------------------------- */
.trust-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}
@media (min-width: 900px) {
	.trust-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}
.trust-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 24px 20px;
	text-align: center;
	transition: transform .2s ease, box-shadow .2s ease;
}
.trust-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 24px -8px rgba(10,37,64,0.12);
}
.trust-card__icon {
	width: 56px;
	height: 56px;
	margin: 0 auto 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(10,37,64,.12), rgba(212,162,76,.18));
	color: var(--primary);
}
.trust-card__title {
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 6px;
	color: var(--text);
}
.trust-card__text {
	margin: 0;
	font-size: 13.5px;
	line-height: 1.6;
	color: var(--text-muted);
}

/* ---------- Forms ---------------------------------------------------- */
.iconic-form {
	max-width: 800px;
	margin: 0 auto;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 28px;
	box-shadow: 0 8px 24px -12px rgba(10,37,64,0.08);
}
.form-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}
@media (min-width: 600px) {
	.form-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
.form-row {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.form-row--full {
	grid-column: 1 / -1;
}
.form-row label {
	font-size: 13px;
	font-weight: 600;
	color: var(--text);
}
.form-row .req {
	color: var(--accent);
	margin-left: 4px;
}
.form-row input,
.form-row select,
.form-row textarea {
	width: 100%;
	padding: 10px 14px;
	border: 1.5px solid var(--border);
	border-radius: 8px;
	font-size: 15px;
	font-family: inherit;
	color: var(--text);
	background: #fff;
	transition: border-color .15s ease, box-shadow .15s ease;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(10,37,64,.12);
}
.form-row textarea {
	resize: vertical;
	min-height: 96px;
}
.form-actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	margin-top: 22px;
}
.form-note {
	margin: 0;
	font-size: 12px;
	color: var(--text-muted);
}
.form-feedback {
	margin-top: 14px;
	font-size: 14px;
	text-align: center;
	color: var(--primary);
}
.form-feedback:empty {
	display: none;
}

/* ---------- Sidebar form (single) ----------------------------------- */
.sidebar-form {
	padding: 0;
	border: 0;
	box-shadow: none;
	background: transparent;
	margin: 0;
}
.sidebar-form .form-row {
	margin-bottom: 12px;
}

/* ---------- Contact strip ------------------------------------------- */
.contact-strip {
	background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
	color: #fff;
	padding: 32px 0;
}
.contact-strip__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
	text-align: center;
}
.contact-strip__text h3 {
	margin: 0 0 4px;
	font-size: 20px;
	font-weight: 700;
}
.contact-strip__text p {
	margin: 0;
	font-size: 14px;
	opacity: .9;
}
.contact-strip__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
}
.contact-strip__actions .btn-primary {
	background: var(--accent);
	color: #0A1929;
	border-color: var(--accent);
}
.contact-strip__actions .btn-primary:hover {
	background: var(--accent-dark);
	border-color: var(--accent-dark);
	color: #fff;
}
@media (min-width: 900px) {
	.contact-strip__inner {
		flex-direction: row;
		justify-content: space-between;
		text-align: left;
	}
}

/* ---------- Filter chips (archive) ---------------------------------- */
.filter-bar {
	padding: 20px 0 0;
	background: var(--bg);
}
.filter-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
}
.filter-chip {
	display: inline-flex;
	align-items: center;
	padding: 8px 16px;
	border-radius: 999px;
	background: #fff;
	border: 1.5px solid var(--border);
	color: var(--text-muted);
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
}
.filter-chip:hover {
	border-color: var(--primary);
	color: var(--primary);
	transform: translateY(-1px);
}
.filter-chip.is-active {
	background: var(--primary);
	color: #fff;
	border-color: var(--primary);
}

/* ---------- Pagination ---------------------------------------------- */
.visa-pagination {
	margin-top: 40px;
	text-align: center;
}
.visa-pagination .nav-links {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 6px;
	align-items: center;
	justify-content: center;
}
.visa-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 12px;
	border-radius: 8px;
	background: #fff;
	border: 1.5px solid var(--border);
	color: var(--text);
	text-decoration: none;
	font-weight: 600;
	font-size: 13px;
	transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.visa-pagination .page-numbers:hover {
	border-color: var(--primary);
	color: var(--primary);
}
.visa-pagination .page-numbers.current {
	background: var(--primary);
	color: #fff;
	border-color: var(--primary);
}

/* ---------- Single visa body --------------------------------------- */
.visa-single__body {
	padding: 64px 0;
	background: var(--bg);
}
.visa-single__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 36px;
	align-items: start;
}
@media (min-width: 900px) {
	.visa-single__grid {
		grid-template-columns: minmax(0, 1fr) 340px;
		gap: 44px;
	}
}

.visa-single__main {
	min-width: 0;
}
.visa-single__content {
	font-size: 16px;
	line-height: 1.7;
	color: var(--text);
}
.visa-single__content p {
	margin: 0 0 16px;
}
.visa-single__content h2,
.visa-single__content h3 {
	color: var(--text);
	margin-top: 28px;
}

.visa-block {
	margin-top: 32px;
	padding: 24px;
	background: var(--bg-soft);
	border: 1px solid var(--border);
	border-radius: 12px;
}
.visa-block__title {
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 16px;
	color: var(--primary);
	position: relative;
	padding-bottom: 8px;
}
.visa-block__title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 36px;
	height: 3px;
	background: var(--accent);
	border-radius: 2px;
}

/* Documents checklist */
.documents-checklist {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
}
@media (min-width: 600px) {
	.documents-checklist {
		grid-template-columns: 1fr 1fr;
	}
}
.documents-checklist li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 12px 14px;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 10px;
	font-size: 14px;
	color: var(--text);
}
.documents-checklist svg {
	flex-shrink: 0;
	color: #fff;
	background: var(--primary);
	border-radius: 50%;
	padding: 3px;
	width: 22px;
	height: 22px;
}

/* Processing table */
.processing-table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid var(--border);
}
.processing-table tr:nth-child(odd) td,
.processing-table tr:nth-child(odd) th {
	background: var(--bg-soft);
}
.processing-table th,
.processing-table td {
	padding: 12px 16px;
	text-align: left;
	font-size: 14px;
	border-bottom: 1px solid var(--border);
}
.processing-table tr:last-child th,
.processing-table tr:last-child td {
	border-bottom: 0;
}
.processing-table th {
	font-weight: 600;
	color: var(--text-muted);
	width: 40%;
}
.processing-table td {
	color: var(--text);
	font-weight: 600;
}
.processing-table__price {
	color: var(--accent) !important;
	font-family: 'Fraunces', Georgia, serif;
	font-size: 16px !important;
}

/* Sidebar */
.visa-single__sidebar {
	display: flex;
	flex-direction: column;
	gap: 18px;
}
@media (min-width: 900px) {
	.visa-single__sidebar {
		position: sticky;
		top: 100px;
	}
}
.sidebar-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 22px;
	box-shadow: 0 6px 20px -10px rgba(10,37,64,0.08);
}
.sidebar-card__title {
	margin: 0 0 6px;
	font-size: 17px;
	font-weight: 700;
	color: var(--primary);
}
.sidebar-card__sub {
	margin: 0 0 16px;
	font-size: 13px;
	color: var(--text-muted);
	line-height: 1.55;
}

.sidebar-card .trust-badges {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.sidebar-card .trust-badges li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 13.5px;
	color: var(--text);
	font-weight: 500;
}
.sidebar-card .trust-badges svg {
	flex-shrink: 0;
	color: var(--accent);
}

.sidebar-card--contact h4 {
	margin: 0 0 12px;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: var(--text-muted);
}
.sidebar-contact {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 0;
	border-bottom: 1px solid var(--border);
	color: var(--text);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: color .15s ease;
}
.sidebar-contact:last-child {
	border-bottom: 0;
}
.sidebar-contact:hover {
	color: var(--primary);
}
.sidebar-contact svg {
	flex-shrink: 0;
	color: var(--primary);
}

/* ---------- Related visas ------------------------------------------- */
.related-visas {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}
@media (min-width: 600px) {
	.related-visas {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (min-width: 900px) {
	.related-visas {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* ---------- Empty state --------------------------------------------- */
.empty-state {
	text-align: center;
	padding: 56px 20px;
}
.empty-state h2 {
	margin: 0 0 10px;
	font-size: 22px;
	color: var(--text);
}
.empty-state p {
	margin: 0 0 22px;
	color: var(--text-muted);
}

/* ---------- Responsive tweaks --------------------------------------- */
@media (max-width: 599px) {
	.region-section {
		padding: 52px 0;
	}
	.visa-hero {
		padding: 44px 0 36px;
	}
	.iconic-form {
		padding: 22px 18px;
	}
	.visa-block {
		padding: 20px 18px;
	}
	.visa-single__body {
		padding: 44px 0;
	}
}

@media (min-width: 1200px) {
	.visa-hero {
		padding: 64px 0 56px;
	}
	.region-section {
		padding: 88px 0;
	}
}

/* ==========================================================================
   === PREMIUM VISA HERO (page-visa landing) ===
   Scoped to .visa-hero--premium so it doesn't override archive / single hero.
   ========================================================================== */

.visa-hero--premium {
	min-height: 56vh;
	padding: 96px 0 88px;
	background:
		radial-gradient(900px 480px at 12% 0%, rgba(212, 162, 76, 0.18), transparent 60%),
		radial-gradient(700px 480px at 95% 100%, rgba(212, 162, 76, 0.10), transparent 60%),
		linear-gradient(135deg, #0A2540 0%, #061A30 60%, #0A2540 100%);
}
.visa-hero--premium::before,
.visa-hero--premium::after { display: none; }

.visa-hero__decor {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	overflow: hidden;
}
.visa-hero__map {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 110%;
	max-width: 1100px;
	color: rgba(212, 162, 76, 0.18);
	opacity: 0.7;
}
.visa-hero__plane {
	position: absolute;
	top: 14%;
	right: 8%;
	color: var(--accent-light, #E8C176);
	opacity: 0.16;
	transform: rotate(-22deg);
}
.visa-hero__passport {
	position: absolute;
	bottom: 8%;
	left: 4%;
	color: var(--accent-light, #E8C176);
	opacity: 0.12;
	transform: rotate(-8deg);
}
@keyframes visa-hero-float {
	0%, 100% { transform: translateY(0) rotate(-22deg); }
	50%      { transform: translateY(-12px) rotate(-22deg); }
}
@keyframes visa-hero-float-slow {
	0%, 100% { transform: translateY(0) rotate(-8deg); }
	50%      { transform: translateY(-18px) rotate(-8deg); }
}
.visa-hero__plane.float-anim { animation: visa-hero-float 7s ease-in-out infinite; }
.visa-hero__passport.float-anim--slow { animation: visa-hero-float-slow 9s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) {
	.visa-hero__plane.float-anim,
	.visa-hero__passport.float-anim--slow { animation: none !important; }
}

.visa-hero--premium .visa-hero__inner {
	position: relative;
	z-index: 2;
}
.visa-hero__content--premium {
	max-width: 820px;
	text-align: left;
}

/* Dark variant of the foil eyebrow — bold gold pill on dark navy hero.
   Compound selector below bumps specificity so it wins over the generic
   `.eyebrow { display:inline-block }` rule in ui-polish.css (which is
   enqueued later in the cascade). */
.eyebrow.eyebrow--foil-dark,
.eyebrow--foil-dark {
	position: relative;
	display: inline-flex !important;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 9px 20px;
	white-space: nowrap;
	background: linear-gradient(135deg, #F5C97A 0%, #E8B65A 40%, #D4A24C 70%, #B8862E 100%);
	border: 1px solid rgba(255, 255, 255, 0.55);
	border-radius: 999px;
	color: #0A2540;
	font-size: 0.78rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-weight: 800;
	box-shadow:
		0 10px 28px -8px rgba(212, 162, 76, 0.85),
		0 0 0 6px rgba(212, 162, 76, 0.18),
		inset 0 1px 0 rgba(255, 255, 255, 0.65);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
	overflow: hidden;
	isolation: isolate;
	transform: translateZ(0);
	animation: eyebrow-foil-pulse 3.5s ease-in-out infinite;
}
.eyebrow--foil-dark::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.55) 50%, transparent 100%);
	transform: translateX(-120%);
	animation: eyebrow-foil-shine 4s ease-in-out infinite;
	pointer-events: none;
	z-index: 1;
}
.eyebrow--foil-dark > * { position: relative; z-index: 2; }
.eyebrow.eyebrow--foil-dark svg,
.eyebrow--foil-dark svg {
	display: inline-block !important;
	color: #0A2540;
	flex-shrink: 0;
	width: 14px;
	height: 14px;
	filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.45));
}

@keyframes eyebrow-foil-pulse {
	0%, 100% {
		box-shadow:
			0 10px 28px -8px rgba(212, 162, 76, 0.85),
			0 0 0 6px rgba(212, 162, 76, 0.18),
			inset 0 1px 0 rgba(255, 255, 255, 0.65);
	}
	50% {
		box-shadow:
			0 14px 34px -8px rgba(212, 162, 76, 1),
			0 0 0 10px rgba(212, 162, 76, 0.05),
			inset 0 1px 0 rgba(255, 255, 255, 0.75);
	}
}
@keyframes eyebrow-foil-shine {
	0%, 60% { transform: translateX(-120%); }
	80%, 100% { transform: translateX(120%); }
}

/* Premium hero title — uses .title-flight + .title-swash already defined in home.css */
.visa-hero__title--premium {
	font-family: 'Fraunces', Georgia, serif;
	font-size: clamp(2.4rem, 5.5vw, 4.2rem);
	line-height: 1.05;
	letter-spacing: -0.02em;
	font-weight: 700;
	margin: 18px 0 14px;
	color: #fff;
}
.visa-hero__title--premium .title-flight {
	position: relative;
	display: inline-block;
	white-space: nowrap;
}
.visa-hero__title--premium .title-flight em {
	background: linear-gradient(135deg, #E9C374 0%, #C9942C 45%, #D4A24C 70%, #E9C374 100%);
	background-size: 200% 100%;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
	animation: hero-gold-shine 6s ease-in-out infinite;
	font-style: italic;
}
.visa-hero__title--premium .title-swash {
	position: absolute;
	left: 4%;
	right: -2%;
	bottom: -12px;
	width: 96%;
	height: 18px;
	color: var(--accent, #D4A24C);
	opacity: 0.85;
}

/* Premium subtitle */
.visa-hero__sub--premium {
	font-size: clamp(1rem, 1.4vw, 1.18rem);
	color: rgba(255, 255, 255, 0.85);
	margin: 26px 0 20px;
	max-width: 620px;
	line-height: 1.55;
}
.visa-hero__sub--premium strong {
	color: #fff;
	font-weight: 700;
	background: linear-gradient(180deg, transparent 65%, rgba(212, 162, 76, 0.35) 65%);
	padding: 0 4px;
}

/* Stats row */
.visa-hero__stats {
	list-style: none;
	padding: 0;
	margin: 22px 0 26px;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	max-width: 680px;
}
.visa-hero__stat {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 14px 16px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
	border: 1px solid rgba(212, 162, 76, 0.30);
	border-radius: 14px;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	transition: transform 0.25s ease, border-color 0.25s ease;
}
.visa-hero__stat:hover {
	transform: translateY(-3px);
	border-color: rgba(212, 162, 76, 0.55);
}
.visa-hero__stat-value {
	font-family: 'Fraunces', Georgia, serif;
	font-size: clamp(1.4rem, 2.2vw, 1.8rem);
	font-weight: 700;
	color: var(--accent-light, #E8C176);
	line-height: 1;
	letter-spacing: -0.01em;
}
.visa-hero__stat-label {
	font-size: 0.72rem;
	color: rgba(255, 255, 255, 0.75);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-weight: 600;
}

/* Hero CTAs */
.visa-hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
	margin-top: 6px;
}
.visa-hero__cta--primary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 26px;
	font-size: 0.98rem;
	font-weight: 700;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--accent, #D4A24C) 0%, var(--accent-dark, #B8862E) 100%);
	color: #0A1929;
	border: 1px solid rgba(255, 255, 255, 0.18);
	box-shadow:
		0 14px 30px -10px rgba(212, 162, 76, 0.55),
		inset 0 1px 0 rgba(255, 255, 255, 0.35);
	transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
	text-decoration: none;
}
.visa-hero__cta--primary:hover {
	transform: translateY(-2px);
	box-shadow:
		0 20px 38px -10px rgba(212, 162, 76, 0.70),
		inset 0 1px 0 rgba(255, 255, 255, 0.45);
	filter: brightness(1.05);
}
.visa-hero__cta--ghost {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 13px 22px;
	font-size: 0.95rem;
	font-weight: 600;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.25);
	color: #fff;
	text-decoration: none;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.visa-hero__cta--ghost:hover {
	background: rgba(255, 255, 255, 0.10);
	border-color: var(--accent, #D4A24C);
	transform: translateY(-2px);
	color: #fff;
}
.visa-hero__cta--ghost svg { color: var(--accent-light, #E8C176); }

/* Hero trust ticker */
.visa-hero__trust {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 20px;
	padding: 8px 16px;
	background: rgba(45, 125, 95, 0.18);
	border: 1px solid rgba(80, 200, 150, 0.30);
	border-radius: 999px;
	font-size: 0.86rem;
	color: rgba(255, 255, 255, 0.9);
}
.visa-hero__trust strong { color: #9BE7C3; font-weight: 700; }
.visa-hero__trust-dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #6FD3A3;
	position: relative;
	flex: 0 0 9px;
}
.visa-hero__trust-dot::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: #6FD3A3;
	animation: visa-hero-pulse 2s ease-out infinite;
}
@keyframes visa-hero-pulse {
	0%   { transform: scale(1);   opacity: 0.55; }
	100% { transform: scale(2.5); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
	.visa-hero__trust-dot::after { animation: none; }
}

/* Hero responsive */
@media (max-width: 900px) {
	.visa-hero--premium { padding: 72px 0 64px; min-height: 0; }
	.visa-hero__stats { grid-template-columns: repeat(2, 1fr); max-width: none; }
	.visa-hero__plane, .visa-hero__passport { display: none; }
}
@media (max-width: 480px) {
	.visa-hero__actions { flex-direction: column; align-items: stretch; }
	.visa-hero__cta--primary,
	.visa-hero__cta--ghost { justify-content: center; }
}

/* ==========================================================================
   === PREMIUM VISA CARD ===
   Modifier .visa-card--premium upgrades the standard card with a passport-
   cover circular flag, refined meta, gold price tag, hover effects.
   ========================================================================== */

.visa-card--premium {
	background:
		linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.92) 100%);
	border: 1px solid rgba(212, 162, 76, 0.22);
	border-radius: 18px;
	padding: 22px 22px 20px;
	box-shadow:
		0 4px 16px -6px rgba(10, 37, 64, 0.10),
		0 1px 0 rgba(255, 255, 255, 0.7) inset;
	position: relative;
	overflow: hidden;
	transition:
		transform 0.4s cubic-bezier(.22,.61,.36,1),
		box-shadow 0.4s ease,
		border-color 0.3s ease;
	isolation: isolate;
}
.visa-card--premium::before {
	/* gold accent bar on top */
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, transparent, var(--accent, #D4A24C), var(--accent-dark, #B8862E), var(--accent, #D4A24C), transparent);
	opacity: 0.7;
	z-index: 2;
	pointer-events: none;
}
.visa-card--premium::after {
	/* subtle dot pattern bg */
	content: "";
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(212, 162, 76, 0.08) 1px, transparent 1.2px);
	background-size: 18px 18px;
	background-position: 0 0;
	opacity: 0.4;
	z-index: 0;
	pointer-events: none;
}
.visa-card--premium > * { position: relative; z-index: 1; }
.visa-card--premium:hover {
	transform: translateY(-6px);
	border-color: var(--accent, #D4A24C);
	box-shadow:
		0 22px 50px -18px rgba(10, 37, 64, 0.24),
		0 0 0 1px rgba(212, 162, 76, 0.30),
		0 1px 0 rgba(255, 255, 255, 0.85) inset;
}

/* Corner "passport stamp" decoration */
.visa-card__corner-stamp {
	position: absolute;
	top: 14px;
	right: 14px;
	color: var(--accent-dark, #B8862E);
	opacity: 0.16;
	transform: rotate(-12deg);
	transition: transform 0.5s ease, opacity 0.3s ease;
	z-index: 2;
	pointer-events: none;
}
.visa-card--premium:hover .visa-card__corner-stamp {
	transform: rotate(-4deg) scale(1.08);
	opacity: 0.28;
}

/* Passport cover circle */
.visa-card__passport {
	position: relative;
	width: 78px;
	height: 78px;
	margin: 4px auto 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: linear-gradient(135deg, #0A2540 0%, #143862 100%);
	box-shadow:
		0 12px 26px -10px rgba(10, 37, 64, 0.35),
		inset 0 -3px 0 rgba(0, 0, 0, 0.20),
		inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.visa-card__passport-ring {
	position: absolute;
	inset: -5px;
	border-radius: 50%;
	border: 2px dashed rgba(212, 162, 76, 0.55);
	pointer-events: none;
	animation: visa-passport-spin 22s linear infinite;
}
@keyframes visa-passport-spin {
	to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
	.visa-card__passport-ring { animation: none; }
}
.visa-card--premium .visa-card__flag {
	font-size: 42px;
	line-height: 1;
	background: none;
	border: 0;
	width: auto;
	height: auto;
	display: block;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.30));
	transition: transform 0.4s cubic-bezier(.22,.61,.36,1);
}
.visa-card--premium:hover .visa-card__flag {
	transform: scale(1.10);
}
.visa-card__passport-shine {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	pointer-events: none;
	mix-blend-mode: screen;
	opacity: 0.6;
}

/* Card head — region + title */
.visa-card__head {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	text-align: center;
	margin-bottom: 2px;
}
.visa-card--premium .visa-card__region {
	background: linear-gradient(135deg, rgba(212, 162, 76, 0.14), rgba(212, 162, 76, 0.06));
	border: 1px solid rgba(212, 162, 76, 0.30);
	color: var(--accent-dark, #B8862E);
	font-weight: 700;
	letter-spacing: 0.12em;
	padding: 4px 10px;
}
.visa-card--premium .visa-card__title {
	font-family: 'Fraunces', Georgia, serif;
	font-size: 1.18rem;
	letter-spacing: -0.01em;
	font-weight: 700;
	margin: 4px 0 0;
}
.visa-card--premium .visa-card__title a {
	background-image: linear-gradient(currentColor, currentColor);
	background-size: 0% 1.5px;
	background-repeat: no-repeat;
	background-position: 50% 100%;
	transition: background-size 0.35s ease, color 0.25s ease;
}
.visa-card--premium:hover .visa-card__title a {
	background-size: 100% 1.5px;
	color: var(--accent-dark, #B8862E);
}

/* Card meta */
.visa-card--premium .visa-card__meta {
	gap: 7px;
	padding: 12px 0;
	border-top: 1px dashed rgba(212, 162, 76, 0.30);
	border-bottom: 1px dashed rgba(212, 162, 76, 0.30);
	font-size: 0.82rem;
}
.visa-card__meta-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	flex: 0 0 24px;
	border-radius: 50%;
	background: rgba(212, 162, 76, 0.14);
	color: var(--accent-dark, #B8862E);
	border: 1px solid rgba(212, 162, 76, 0.28);
}
.visa-card__meta-icon--success {
	background: rgba(45, 125, 95, 0.12);
	border-color: rgba(45, 125, 95, 0.30);
	color: #1F6F4E;
}
.visa-card__meta-success strong {
	color: #1F6F4E !important;
}

/* Card footer */
.visa-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: auto;
	padding-top: 14px;
}
.visa-card--premium .visa-card__price {
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
	line-height: 1.1;
}
.visa-card--premium .card-price-eyebrow {
	font-size: 0.68rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--text-muted);
	font-weight: 700;
}
.visa-card__price-value {
	font-family: 'Fraunces', Georgia, serif;
	font-size: 1.25rem;
	font-weight: 700;
	background: linear-gradient(135deg, var(--accent-dark, #B8862E), var(--accent, #D4A24C));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
	letter-spacing: -0.01em;
}
.visa-card__price--quote .visa-card__price-value { font-size: 1rem; }

.visa-card--premium .visa-card__cta {
	background: linear-gradient(135deg, var(--primary, #0A2540) 0%, #143862 100%);
	border: 1px solid rgba(212, 162, 76, 0.40);
	color: #fff;
	padding: 9px 16px;
	border-radius: 999px;
	font-size: 0.82rem;
	letter-spacing: 0.02em;
	box-shadow: 0 8px 18px -10px rgba(10, 37, 64, 0.45);
	transition: gap 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.visa-card--premium .visa-card__cta:hover {
	background: linear-gradient(135deg, var(--primary, #0A2540) 0%, #143862 100%);
	color: #fff;
	border-color: var(--accent, #D4A24C);
	gap: 12px;
	transform: translateY(-1px);
	box-shadow: 0 14px 24px -10px rgba(10, 37, 64, 0.55);
}
.visa-card--premium .visa-card__cta svg { color: var(--accent-light, #E8C176); }

/* Tour variant guard — keep tour cards working with thumbnail */
.visa-card.visa-card--tour { padding: 0 0 20px; }
.visa-card.visa-card--tour .visa-card__head,
.visa-card.visa-card--tour .visa-card__meta,
.visa-card.visa-card--tour .visa-card__footer { padding-left: 20px; padding-right: 20px; }

/* ============================ DARK MODE =============================== */
html.dark .visa-hero--premium,
html[data-theme="dark"] .visa-hero--premium {
	background:
		radial-gradient(900px 480px at 12% 0%, rgba(212, 162, 76, 0.16), transparent 60%),
		radial-gradient(700px 480px at 95% 100%, rgba(212, 162, 76, 0.08), transparent 60%),
		linear-gradient(135deg, #061A30 0%, #04101F 60%, #061A30 100%);
}
html.dark .visa-hero__stat,
html[data-theme="dark"] .visa-hero__stat {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
	border-color: rgba(212, 162, 76, 0.35);
}
html.dark .visa-card--premium,
html[data-theme="dark"] .visa-card--premium {
	background: #122842;
	border-color: rgba(212, 162, 76, 0.22);
	box-shadow:
		0 4px 16px -6px rgba(0, 0, 0, 0.45),
		0 1px 0 rgba(255, 255, 255, 0.05) inset;
}
html.dark .visa-card--premium::after,
html[data-theme="dark"] .visa-card--premium::after {
	background-image: radial-gradient(rgba(212, 162, 76, 0.10) 1px, transparent 1.2px);
}
html.dark .visa-card--premium:hover,
html[data-theme="dark"] .visa-card--premium:hover {
	border-color: var(--accent, #D4A24C);
	box-shadow:
		0 22px 50px -18px rgba(0, 0, 0, 0.55),
		0 0 0 1px rgba(212, 162, 76, 0.35);
}
html.dark .visa-card--premium .visa-card__title,
html[data-theme="dark"] .visa-card--premium .visa-card__title { color: #F1F4F8; }
html.dark .visa-card--premium .visa-card__title a,
html[data-theme="dark"] .visa-card--premium .visa-card__title a { color: #F1F4F8; }
html.dark .visa-card--premium:hover .visa-card__title a,
html[data-theme="dark"] .visa-card--premium:hover .visa-card__title a { color: var(--accent-light, #E8C176); }
html.dark .visa-card--premium .visa-card__region,
html[data-theme="dark"] .visa-card--premium .visa-card__region {
	background: linear-gradient(135deg, rgba(212, 162, 76, 0.20), rgba(212, 162, 76, 0.08));
	border-color: rgba(212, 162, 76, 0.40);
	color: var(--accent-light, #E8C176);
}
html.dark .visa-card--premium .visa-card__meta,
html[data-theme="dark"] .visa-card--premium .visa-card__meta {
	color: #C7D2DE;
	border-color: rgba(212, 162, 76, 0.30);
}
html.dark .visa-card--premium .visa-card__meta strong,
html[data-theme="dark"] .visa-card--premium .visa-card__meta strong { color: #F1F4F8; }
html.dark .visa-card__meta-icon,
html[data-theme="dark"] .visa-card__meta-icon {
	background: rgba(212, 162, 76, 0.18);
	border-color: rgba(212, 162, 76, 0.40);
	color: var(--accent-light, #E8C176);
}
html.dark .visa-card__meta-icon--success,
html[data-theme="dark"] .visa-card__meta-icon--success {
	background: rgba(80, 200, 150, 0.14);
	border-color: rgba(80, 200, 150, 0.35);
	color: #9BE7C3;
}
html.dark .visa-card--premium .card-price-eyebrow,
html[data-theme="dark"] .visa-card--premium .card-price-eyebrow { color: #95A3B1; }
html.dark .visa-card--premium .visa-card__cta,
html[data-theme="dark"] .visa-card--premium .visa-card__cta {
	background: linear-gradient(135deg, #1B3358 0%, #102849 100%);
}

/* ==========================================================================
   === PREMIUM VISA ARCHIVE (Phase 2) ===
   Hero/Filters/Results-bar/Grid + sticky sidebar
   ========================================================================== */

/* Archive hero override (shorter than landing hero) */
.visa-hero--archive-premium {
	min-height: 42vh;
	padding: 76px 0 64px;
}
.visa-hero__content--archive { max-width: 760px; }
.visa-hero__content--archive .visa-hero__title--premium {
	font-size: clamp(2.2rem, 5vw, 3.4rem);
}

/* Region-pill filter bar (above grid) */
.filter-bar--premium {
	padding: 24px 0 0;
	background: transparent;
	position: relative;
	z-index: 1;
	margin-top: -28px;
}
.filter-bar--premium::before {
	/* gold gradient line above pills */
	content: "";
	display: block;
	max-width: 280px;
	height: 1px;
	margin: 0 auto 18px;
	background: linear-gradient(90deg, transparent, var(--accent, #D4A24C), transparent);
	opacity: 0.6;
}
.filter-chips--region-pills {
	gap: 10px;
}
.filter-chip--pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 18px;
	border-radius: 999px;
	background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.92));
	border: 1.5px solid rgba(212, 162, 76, 0.30);
	color: var(--primary, #0A2540);
	font-size: 0.84rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-decoration: none;
	box-shadow: 0 6px 16px -10px rgba(10, 37, 64, 0.20);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.25s ease, color 0.25s ease;
}
.filter-chip--pill .filter-chip__dot {
	width: 7px;
	height: 7px;
	flex: 0 0 7px;
	border-radius: 50%;
	background: var(--accent, #D4A24C);
	box-shadow: 0 0 0 2px rgba(212, 162, 76, 0.20);
	transition: background 0.25s ease, box-shadow 0.25s ease;
}
.filter-chip--pill:hover {
	transform: translateY(-2px);
	border-color: var(--accent, #D4A24C);
	box-shadow: 0 12px 22px -10px rgba(184, 134, 46, 0.40);
	color: var(--accent-dark, #B8862E);
}
.filter-chip--pill.is-active {
	background: linear-gradient(135deg, var(--primary, #0A2540) 0%, #143862 100%);
	color: #fff;
	border-color: rgba(212, 162, 76, 0.55);
	box-shadow:
		0 14px 28px -10px rgba(10, 37, 64, 0.45),
		0 0 0 2px rgba(212, 162, 76, 0.18);
}
.filter-chip--pill.is-active .filter-chip__dot {
	background: var(--accent-light, #E8C176);
	box-shadow: 0 0 0 2px rgba(212, 162, 76, 0.35);
}

/* Region section spacing on archive */
.region-section--archive {
	padding: 40px 0 80px;
}

/* Results bar above the grid */
.archive-results-bar {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	padding: 14px 20px;
	margin-bottom: 22px;
	background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.85));
	border: 1px solid rgba(212, 162, 76, 0.25);
	border-radius: 14px;
	box-shadow: 0 10px 24px -16px rgba(10, 37, 64, 0.15);
}
.archive-results-bar__count {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 0.92rem;
	color: var(--text-muted, #5A6B7A);
}
.archive-results-bar__count svg {
	color: var(--accent-dark, #B8862E);
	background: rgba(212, 162, 76, 0.14);
	border: 1px solid rgba(212, 162, 76, 0.30);
	border-radius: 50%;
	padding: 4px;
	width: 24px;
	height: 24px;
}
.archive-results-bar__count strong {
	color: var(--primary, #0A2540);
	font-weight: 800;
	font-family: 'Fraunces', Georgia, serif;
	letter-spacing: -0.01em;
}
.archive-results-bar__pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 14px;
	background: rgba(45, 125, 95, 0.10);
	border: 1px solid rgba(45, 125, 95, 0.28);
	color: #1F6F4E;
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}
.archive-results-bar__pill .live-dot {
	width: 7px;
	height: 7px;
	flex: 0 0 7px;
	background: #2D7D5F;
}

/* Visa grid spacing in premium archive */
.visa-grid--premium { gap: 24px; }
@media (min-width: 900px) {
	.visa-grid--premium { gap: 26px; }
}

/* Premium archive layout — sticky sidebar */
@media (min-width: 901px) {
	.archive-layout--premium .iconic-filters {
		position: sticky;
		top: 96px;
		max-height: calc(100vh - 120px);
		overflow-y: auto;
		border-radius: 18px;
		border: 1px solid rgba(212, 162, 76, 0.22);
		box-shadow:
			0 10px 30px -16px rgba(10, 37, 64, 0.18),
			0 1px 0 rgba(255, 255, 255, 0.7) inset;
		background: linear-gradient(180deg, rgba(255,255,255,1), rgba(255,255,255,0.95));
		padding: 18px 18px 12px;
	}
}

/* Sidebar visual polish (always) */
.iconic-filters__title {
	font-family: 'Fraunces', Georgia, serif;
	letter-spacing: -0.01em;
}
.archive-layout--premium .filter-group h4 {
	font-size: 0.74rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--accent-dark, #B8862E);
	font-weight: 800;
}
.archive-layout--premium .iconic-filters .filter-chip {
	background: linear-gradient(180deg, #fff, rgba(255,255,255,0.92));
	border: 1.5px solid rgba(212, 162, 76, 0.28);
	color: var(--primary, #0A2540);
	font-weight: 700;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.archive-layout--premium .iconic-filters .filter-chip:hover {
	border-color: var(--accent, #D4A24C);
	color: var(--accent-dark, #B8862E);
	transform: translateY(-1px);
}
.archive-layout--premium .iconic-filters .filter-chip.is-active {
	background: linear-gradient(135deg, var(--primary, #0A2540), #143862);
	color: #fff;
	border-color: rgba(212, 162, 76, 0.55);
	box-shadow: 0 8px 18px -10px rgba(10, 37, 64, 0.45);
}
.archive-layout--premium .iconic-filters__apply {
	background: linear-gradient(135deg, var(--accent, #D4A24C) 0%, var(--accent-dark, #B8862E) 100%);
	color: #0A1929;
	border: 1px solid rgba(255, 255, 255, 0.18);
	box-shadow:
		0 8px 20px -8px rgba(212, 162, 76, 0.50),
		inset 0 1px 0 rgba(255, 255, 255, 0.40);
	font-weight: 800;
	letter-spacing: 0.02em;
}
.archive-layout--premium .iconic-filters__apply:hover {
	filter: brightness(1.05);
	transform: translateY(-1px);
}

/* Empty state premium */
.empty-state--premium {
	text-align: center;
	padding: 60px 24px;
	background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.85));
	border: 1px dashed rgba(212, 162, 76, 0.35);
	border-radius: 18px;
}
.empty-state--premium .empty-state__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 84px;
	height: 84px;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(212, 162, 76, 0.14), rgba(212, 162, 76, 0.06));
	border: 1px solid rgba(212, 162, 76, 0.30);
	color: var(--accent-dark, #B8862E);
	margin: 0 auto 18px;
}
.empty-state--premium h2 {
	font-family: 'Fraunces', Georgia, serif;
	font-size: 1.6rem;
	margin: 0 0 8px;
}
.empty-state--premium p {
	color: var(--text-muted, #5A6B7A);
	max-width: 440px;
	margin: 0 auto 18px;
	line-height: 1.55;
}

/* Mobile */
@media (max-width: 900px) {
	.visa-hero--archive-premium { padding: 60px 0 48px; min-height: 0; }
	.archive-results-bar { padding: 12px 16px; }
	.region-section--archive { padding: 28px 0 56px; }
}

/* Dark mode parity for archive premium */
html.dark .filter-chip--pill,
html[data-theme="dark"] .filter-chip--pill {
	background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
	border-color: rgba(212, 162, 76, 0.35);
	color: #E5E9EF;
}
html.dark .filter-chip--pill:hover,
html[data-theme="dark"] .filter-chip--pill:hover {
	border-color: var(--accent, #D4A24C);
	color: var(--accent-light, #E8C176);
}
html.dark .filter-chip--pill.is-active,
html[data-theme="dark"] .filter-chip--pill.is-active {
	background: linear-gradient(135deg, #1B3358 0%, #102849 100%);
	color: #fff;
	border-color: rgba(212, 162, 76, 0.55);
}
html.dark .archive-results-bar,
html[data-theme="dark"] .archive-results-bar {
	background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
	border-color: rgba(212, 162, 76, 0.30);
}
html.dark .archive-results-bar__count,
html[data-theme="dark"] .archive-results-bar__count { color: #C7D2DE; }
html.dark .archive-results-bar__count strong,
html[data-theme="dark"] .archive-results-bar__count strong { color: var(--accent-light, #E8C176); }
html.dark .archive-results-bar__pill,
html[data-theme="dark"] .archive-results-bar__pill {
	background: rgba(80, 200, 150, 0.10);
	border-color: rgba(80, 200, 150, 0.30);
	color: #9BE7C3;
}
html.dark .archive-layout--premium .iconic-filters,
html[data-theme="dark"] .archive-layout--premium .iconic-filters {
	background: #122842;
	border-color: rgba(212, 162, 76, 0.25);
	box-shadow: 0 10px 30px -16px rgba(0, 0, 0, 0.50);
}
html.dark .archive-layout--premium .filter-group h4,
html[data-theme="dark"] .archive-layout--premium .filter-group h4 { color: var(--accent-light, #E8C176); }
html.dark .archive-layout--premium .iconic-filters .filter-chip,
html[data-theme="dark"] .archive-layout--premium .iconic-filters .filter-chip {
	background: rgba(255,255,255,0.04);
	border-color: rgba(212, 162, 76, 0.30);
	color: #E5E9EF;
}
html.dark .empty-state--premium,
html[data-theme="dark"] .empty-state--premium {
	background: #122842;
	border-color: rgba(212, 162, 76, 0.30);
	color: #E5E9EF;
}
html.dark .empty-state--premium h2,
html[data-theme="dark"] .empty-state--premium h2 { color: #F1F4F8; }
html.dark .empty-state--premium p,
html[data-theme="dark"] .empty-state--premium p { color: #95A3B1; }
