:root {
	--uev-teal: #0f706d;
	--uev-bright: #24bec0;
	--uev-lime: #d5cc2e;
	--uev-ink: #181818;
	--uev-muted: #666;
	--uev-line: #dadada;
	--uev-pale: #dff3f3;
	--uev-grey: #f5f5f5;
	--uev-max: 1300px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	padding: 0;
}

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

.uev-page {
	font-family: Manrope, Arial, sans-serif;
	color: var(--uev-ink);
	font-size: 16px;
	line-height: 1.48;
}

.uev-page a {
	color: #0879cb;
	text-decoration: none;
}

.uev-container {
	width: min(var(--uev-max), calc(100% - 56px));
	margin-inline: auto;
}

.uev-page ul {
	list-style: disc;
}

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

.uev-hero {
	background: #fff;
}

.uev-hero-v2 .uev-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	grid-template-rows: auto 1fr;
	gap: 30px 75px;
	min-height: 0;
	position: relative;
	overflow: hidden;
}

.uev-hero-v2 .uev-breadcrumb {
	grid-column: 1 / -1;
	position: static;
	margin: 20px 0 0;
	font-size: 12px;
	color: #8c8c8c;
	text-align: left;
}

.uev-breadcrumb a {
	color: #222;
}

.uev-hero-v2 .uev-hero-copy {
	grid-column: 1;
	grid-row: 2;
	min-width: 0;
	padding-top: 0;
	padding-bottom: 40px;
}

.uev-hero-v2 h1 {
	margin: 0 0 18px;
	font-size: 48px;
	line-height: 1.15;
	letter-spacing: -0.8px;
	font-weight: 800;
}

.uev-hero-v2 .uev-updated {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 16px;
	color: var(--uev-ink);
	font-weight: 400;
}

.uev-hero-v2 .uev-updated img {
	width: 22px;
	height: 22px;
	flex-shrink: 0;
}

.uev-hero-actions {
	margin-top: 22px;
	padding-top: 22px;
	border-top: 1px solid var(--uev-line);
	display: flex;
	align-items: center;
}

.uev-verified {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 12px;
	color: #777;
	text-align: left;
}

.uev-verified>img {
	width: 50px;
	height: 50px;
	flex-shrink: 0;
	border-radius: 50%;
	object-fit: cover;
}

.uev-verified a {
	color: var(--uev-teal);
	font-weight: 800;
	text-decoration: underline;
}

.uev-reviewer-name {
	color: var(--uev-teal);
	font-weight: 700;
	text-decoration: underline;
}

.uev-hero-v2 .uev-hero-visual {
	grid-column: 2;
	grid-row: 2;
	position: relative;
	display: block;
	align-self: start;
	overflow: hidden;
	margin-top: 1rem;
}

.uev-hero-v2 .uev-hero-visual picture {
	display: block;
	width: 100%;
}

.uev-hero-v2 .uev-hero-visual img {
	display: block;
	width: 360px;
	height: 432px;
	max-width: 100%;
	margin-inline: auto;
	border: 0;
	border-radius: 10px;
	background: none;
	object-fit: cover;
	margin-bottom: 4rem;
}

/* =========================================================
AT A GLANCE
========================================================= */

.uev-glance {
	background: var(--uev-teal);
	color: #fff;
	padding: 70px 0 76px;
	margin-top: 76px;
}

.uev-kicker {
	margin: 0;
	color: #27c5c8;
	font-size: 18px;
	font-weight: 800;
}

.uev-glance h2 {
	margin: 0 0 48px;
	color: #25c2c5;
	font-size: 70px;
	line-height: 1;
	letter-spacing: -2px;
	font-weight: 800;
}

.uev-glance-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 70px;
}

.uev-glance-grid article {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 15px;
	padding: 20px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.uev-glance-grid h3 {
	position: relative;
	margin: 0;
	padding-left: 16px;
	font-size: 14px;
}

.uev-glance-grid h3::before {
	content: "";
	position: absolute;
	left: 0;
	top: 7px;
	width: 6px;
	height: 6px;
	border: 2px solid var(--uev-lime);
	border-radius: 50%;
}

.uev-glance-grid h4 {
	margin: 0 0 8px;
	color: #fff;
	font-size: 16px;
	line-height: 1.4;
	font-weight: 700;
}

.uev-glance-grid p {
	margin: 0;
	font-size: 14px;
}

.uev-glance-grid div>span {
	display: inline-block;
	margin-top: 8px;
	padding: 4px 10px;
	border-radius: 4px;
	background: #26c2c4;
	color: #0b6562;
	font-size: 14px;
}

/* =========================================================
MAIN LAYOUT + TOC
========================================================= */

.uev-content-layout {
	display: grid;
	grid-template-columns: 230px minmax(0, 1fr);
	gap: 70px;
	padding-top: 85px;
}

.uev-main-content {
	min-width: 0;
}

.uev-toc {
	position: sticky;
	top: 20px;
	align-self: start;
	width: 230px;
	max-height: calc(100vh - 40px);
	overflow-y: auto;
	padding: 0 0 18px;
	scrollbar-width: thin;
	scrollbar-color: #d7d7d7 transparent;
}

.uev-toc::-webkit-scrollbar {
	width: 4px;
}

.uev-toc::-webkit-scrollbar-thumb {
	background: #d7d7d7;
	border-radius: 10px;
}

.uev-toc h2 {
	margin: 0 0 16px;
	padding: 0;
	font-size: 20px;
	line-height: 1.2;
	font-weight: 700;
	color: #1b1b1b;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.uev-toc-group {
	margin: 0 0 9px;
	padding: 0;
}

.uev-toc .uev-toc-toggle {
	width: 100%;
	margin: 0;
	padding: 3px 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: Manrope, Arial, sans-serif;
	font-size: 13px;
	line-height: 1.35;
	font-weight: 500;
	text-align: left;
	color: #777;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
}

.uev-toc-toggle-icon {
	width: 12px;
	height: 12px;
	flex: 0 0 12px;
	background: url('../../images/visa-clone/uev-toc-plus.webp') center / 12px 12px no-repeat;
}

.uev-toc-group.is-open>.uev-toc-toggle .uev-toc-toggle-icon {
	background-image: url('../../images/visa-clone/uev-toc-minus.webp');
}

.uev-toc-links {
	display: grid;
	overflow: hidden;
}

.uev-toc-group:not(.is-open)>.uev-toc-links {
	display: none;
}

.uev-toc .uev-toc-links a {
	display: block;
	margin: 0;
	padding: 6px 0 6px 35px;
	font-size: 13px;
	line-height: 1.3;
	font-weight: 400;
	color: #8a8a8a;
	text-decoration: none;
	transition: color 0.18s ease;
}

.uev-toc .uev-toc-links a:hover,
.uev-toc .uev-toc-links a:focus-visible {
	color: #333;
}

.uev-toc .uev-toc-links a.is-active {
	color: #222;
	font-weight: 600;
}

.uev-toc .uev-toc-toggle:focus-visible {
	outline: 2px solid rgba(15, 112, 109, 0.25);
	outline-offset: 2px;
}

/* =========================================================
CONTENT SECTIONS
========================================================= */

.uev-section:not(:first-of-type) {
	padding-top: 88px;
}

.uev-number {
	display: block;
	margin-bottom: 10px;
	color: var(--uev-teal);
	font-size: 13px;
	font-weight: 800;
}

.uev-section>h2,
.uev-faq>h2 {
	margin: 0 0 30px;
	color: var(--uev-teal);
	font-size: 36px;
	line-height: 1.15;
	letter-spacing: -0.8px;
	font-weight: 700;
}

.uev-section h3 {
	margin: 30px 0 28px;
	font-size: 28px;
	font-weight: 700;
}

.uev-section p {
	margin: 0 0 17px;
}

.uev-note {
	display: flex;
	gap: 14px;
	margin-top: 25px;
	padding: 11px 14px;
	border-left: 3px solid var(--uev-teal);
	background: var(--uev-pale);
	font-size: 16px;
}

.uev-note p {
	margin: 0;
}

.uev-detail-list>div {
	display: grid;
	grid-template-columns: 300px 1fr;
	gap: 35px;
	padding: 18px 0;
	border-bottom: 1px solid var(--uev-line);
}

.uev-detail-list h3 {
	margin: 0;
	font-size: 16px;
	font-weight: 600;
}

.uev-detail-list p {
	margin: 0;
}

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

.uev-country-grid span {
	padding: 10px;
	background: #f5f5f5;
	border: 1px solid #fff;
}

/* =========================================================
TABLES
========================================================= */

.usv-table-wrap {
	width: 100%;
	margin: 22px 0 24px;
	overflow-x: auto;
}

.usv-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	table-layout: fixed;
	font-size: 14px;
	line-height: 1.45;
}

.usv-table th,
.usv-table td {
	padding: 11px 12px;
	border: 2px solid #fff;
	text-align: left;
	vertical-align: top;
}

.usv-table thead th {
	background: #7fd2dc;
	color: var(--uev-ink);
	font-weight: 700;
}

.usv-table tbody th,
.usv-table tbody td {
	background: #f2f2f2;
}

.usv-table tbody th {
	width: 42%;
	font-weight: 600;
}

.usv-table-intro {
	margin-top: 24px !important;
	margin-bottom: 10px !important;
}

.usv-source-chip {
	display: inline-block;
	margin: -8px 0 2px;
	padding: 5px 10px;
	border-radius: 4px;
	background: #e6f5f0;
	color: #0b6562;
	font-size: 12px;
	line-height: 1.35;
}

.usv-fee-table {
	margin-top: 16px;
}

#other-nationals .uev-country-grid+.usv-table-intro,
#other-nationals .uev-country-grid+p {
	margin-top: 24px !important;
}

/* =========================================================
FAQ
========================================================= */

.uev-faq {
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
	padding: 70px 0 100px;
}

.uev-faq>h2 {
	margin: 0 0 32px;
	text-align: center;
	font-size: clamp(30px, 3vw, 38px);
	color: #0c6f74;
}

.uev-faq .uev-accordion {
	width: 84%;
	margin: 14px auto;
	border: 1px solid var(--uev-line);
	border-radius: 8px;
	overflow: hidden;
}

.uev-faq .uev-accordion.is-open {
	background: #f5f5f5;
}

.uev-faq .uev-accordion>button {
	width: 100%;
	min-height: 64px;
	margin: 0;
	padding: 18px 20px 18px 26px;
	border: 0;
	background: transparent;
	color: #111;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	text-align: left;
	font: inherit;
	cursor: pointer;
}

.uev-faq .uev-faq-question {
	flex: 1 1 auto;
	min-width: 0;
	font-size: 16px;
	line-height: 1.45;
	font-weight: 700;
}

.uev-faq .uev-faq-icon {
	display: block;
	width: 24px;
	height: 24px;
	min-width: 24px;
	flex: 0 0 24px;
	margin: 0;
	padding: 0;
	border: 0;
	background: url('../../images/visa-clone/faq-plus-icon.png') center / 24px 24px no-repeat;
}

.uev-faq .uev-accordion.is-open .uev-faq-icon {
	background-image: url('../../images/visa-clone/faq-minus-icon.png');
}

.uev-faq .uev-accordion-panel {
	display: none;
	padding: 0 26px 22px;
}

.uev-faq .uev-accordion.is-open>.uev-accordion-panel {
	display: block;
}

.uev-faq .uev-accordion-panel p {
	margin: 0;
	font-size: 15px;
	line-height: 1.45;
	color: #202020;
}

#stay-beyond-90-days,
#green-card-us-visa,
#advance-tourist-visa,
#faq {
	scroll-margin-top: 24px;
}

/* =========================================================
RESPONSIVE
========================================================= */

@media (max-width: 991px) {
	.uev-hero-v2 h1 {
		font-size: 40px;
	}

	.uev-section>h2,
	.uev-faq>h2 {
		font-size: 32px;
	}

	.uev-section h3 {
		font-size: 26px;
	}
}

@media (max-width: 900px) {
	.uev-container {
		width: calc(100% - 28px);
	}

	.uev-hero-v2 .uev-hero-grid {
		display: flex;
		flex-direction: column;
		gap: 0;
		width: 100%;
		padding-bottom: 0;
		overflow: hidden;
	}

	.uev-hero-v2 .uev-breadcrumb {
		order: 0;
		margin: 14px 20px 18px;
		font-size: 10px;
	}

	.uev-hero-v2 .uev-hero-visual {
		order: 1;
		width: min(100%, 320px);
		height: auto;
		margin: 0 auto;
		align-self: center;
	}

	.uev-hero-v2 .uev-hero-visual img {
		width: 320px;
		height: 384px;
		object-fit: cover;
		margin-bottom: 0;
	}

	.uev-hero-v2 .uev-hero-copy {
		order: 2;
		position: relative;
		z-index: 1;
		width: 100%;
		padding: 24px 20px 28px;
		border-radius: 34px 34px 0 0;
		background: #fff;
		text-align: center;
	}

	.uev-hero-v2 .uev-updated {
		justify-content: center;
		color: var(--uev-teal);
		font-size: 13px;
	}

	.uev-hero-actions {
		justify-content: center;
	}

	.uev-glance {
		margin-top: 70px;
		padding: 60px 0;
	}

	.uev-kicker {
		font-size: 20px;
	}

	.uev-glance h2 {
		font-size: 64px;
		margin-bottom: 25px;
	}

	.uev-glance-grid {
		grid-template-columns: 1fr;
	}

	.uev-glance-grid article {
		display: block;
		padding: 21px 0;
	}

	.uev-glance-grid h3 {
		margin-bottom: 16px;
	}

	.uev-glance-grid h4 {
		font-size: 15px;
	}

	.uev-content-layout {
		display: block;
		padding-top: 0;
	}

	.uev-toc {
		display: none;
	}

	.uev-section {
		padding-top: 78px;
	}

	.uev-detail-list>div {
		display: block;
		padding: 20px 0;
	}

	.uev-detail-list p {
		margin-top: 14px;
		font-size: 14px;
	}

	.uev-detail-list h3 {
		font-size: 20px;
	}

	.uev-country-grid {
		grid-template-columns: 1fr 1fr;
		max-height: none;
		overflow: visible;
	}

	.uev-note {
		display: block;
	}

	.usv-table {
		min-width: 560px;
		table-layout: auto;
	}

	.usv-table th,
	.usv-table td {
		min-width: 120px;
	}

	.uev-faq {
		padding-top: 80px;
	}

	.uev-faq .uev-accordion {
		width: 100%;
		margin: 12px 0;
	}
}

@media (max-width: 767px) {
	.uev-hero-v2 h1 {
		font-size: 32px;
	}

	.uev-section>h2,
	.uev-faq>h2 {
		font-size: 28px;
	}

	.uev-section h3 {
		font-size: 20px;
	}

	.uev-faq {
		padding-bottom: 36px;
	}

	.uev-faq>h2 {
		margin-bottom: 24px;
		font-size: 30px;
	}

	.uev-faq .uev-accordion>button {
		min-height: 60px;
		padding: 16px 16px 16px 18px;
		gap: 14px;
	}

	.uev-faq .uev-faq-question {
		font-size: 15px;
	}

	.uev-faq .uev-accordion-panel {
		padding: 0 18px 18px;
	}

	.uev-faq .uev-accordion-panel p {
		font-size: 14px;
	}
}

/* ==========================================
PRESS COVERAGE / AS SEEN ON
========================================== */

.press-coverage {
	width: 100%;
	background: #ffffff;
	border-top: 1px solid #d9d9d9;
	border-bottom: 1px solid #d9d9d9;
	position: relative;
	z-index: 10;
}

.press-coverage__wrapper {
	width: 100%;
	max-width: 1300px;
	min-height: 96px;
	margin: 0 auto;
	padding: 20px 0;

	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 38px;

	overflow: hidden;
}

.press-coverage__label {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 11px;

	min-width: 112px;
	padding: 10px 14px;

	border-radius: 999px;
	background: #ffffff;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);

	font-family: "Manrope", Arial, sans-serif;
	font-weight: 600;
	font-size: 14px;
	line-height: 120%;
	letter-spacing: 0;
	text-align: center;
	color: #828282;
	white-space: nowrap;
}

.press-coverage__dot {
	flex: 0 0 auto;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #27bdbe;
}

.press-coverage__logos {
	flex: 1 1 auto;
	min-width: 0;

	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 36px;

	white-space: nowrap;
}

.press-logo {
	display: block;
	flex: 0 0 auto;
	width: auto;
	max-width: none;
	object-fit: contain;
	filter: grayscale(100%);
}

.press-coverage__link {
	flex: 0 0 auto;

	display: inline-flex;
	align-items: center;
	gap: 5px;

	font-family: "Manrope", Arial, sans-serif;
	font-weight: 600;
	font-size: 14px;
	line-height: 120%;
	letter-spacing: 0;
	text-align: center;
	color: #0f6464;
	text-decoration: none;
	white-space: nowrap;
}

.press-coverage__link:hover {
	color: #0f6464;
	text-decoration: underline;
}

.press-coverage__link:focus-visible {
	outline: 2px solid #27bdbe;
	outline-offset: 4px;
	border-radius: 2px;
}


/* ==========================================
DESKTOP / LAPTOP
Keep everything on one line
========================================== */

@media (min-width: 1101px) {

	.press-coverage__wrapper,
	.press-coverage__logos {
		flex-wrap: nowrap;
	}

	.press-coverage__label,
	.press-logo,
	.press-coverage__link {
		flex-shrink: 0;
	}
}


/* ==========================================
TABLET / SMALL LAPTOP
Horizontal scrolling when required
========================================== */

@media (max-width: 1100px) {

	.press-coverage {
		overflow: hidden;
	}

	.press-coverage__wrapper {
		min-height: 88px;
		padding: 18px 24px;

		justify-content: flex-start;
		gap: 30px;

		overflow-x: auto;
		overflow-y: hidden;

		scrollbar-width: none;
		-webkit-overflow-scrolling: touch;
	}

	.press-coverage__wrapper::-webkit-scrollbar {
		display: none;
	}

	.press-coverage__logos {
		flex: 0 0 auto;
		justify-content: flex-start;
		gap: 34px;
	}

	.press-coverage__label,
	.press-coverage__link,
	.press-logo {
		flex-shrink: 0;
	}
}


/* ==========================================
MOBILE
Label on top
Logos in 3-column grid
Link below
========================================== */

@media (max-width: 600px) {

	.press-coverage {
		overflow: visible;
		margin-top: 0;
	}

	.press-coverage__wrapper {
		min-height: auto;
		padding: 28px 26px 46px;

		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;

		gap: 0;
		overflow: visible;
	}

	.press-coverage__label {
		min-width: auto;
		margin-bottom: 27px;
		padding: 9px 14px;
		gap: 11px;
		font-size: 14px;
	}

	.press-coverage__dot {
		width: 16px;
		height: 16px;
	}

	.press-coverage__logos {
		width: 100%;

		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));

		align-items: center;
		justify-items: center;

		column-gap: 18px;
		row-gap: 29px;

		white-space: normal;
	}

	.press-logo {
		flex: none;
		width: auto;
		max-width: 100%;
		object-fit: contain;
	}

	.press-logo--rak {
		width: auto;
		height: 48px;
	}

	.press-logo--gulf-news {
		width: auto;
		height: 26px;
	}

	.press-logo--khaleej-times {
		width: auto;
		height: 25px;
	}

	.press-logo--time-out {
		width: auto;
		height: 46px;
	}

	.press-logo--wikipedia {
		width: auto;
		height: 45px;
	}

	.press-logo--nomad {
		width: auto;
		height: 45px;
	}

	.press-coverage__link {
		margin-top: 43px;
		font-size: 16px;
		line-height: 120%;
	}
}


/* ==========================================
VERY SMALL MOBILE
========================================== */

@media (max-width: 380px) {

	.press-coverage__wrapper {
		padding-left: 16px;
		padding-right: 16px;
	}

	.press-coverage__logos {
		column-gap: 10px;
	}

	.press-logo--rak {
		height: 42px;
	}

	.press-logo--gulf-news,
	.press-logo--khaleej-times {
		height: 22px;
	}

	.press-logo--time-out,
	.press-logo--wikipedia,
	.press-logo--nomad {
		height: 40px;
	}
}

/* =========================================================
US GREEN CARD HOLDERS — ONLY NEW COMPONENTS
Canada template styles above remain unchanged.
========================================================= */

/* Source page requires two decision cards. */
.gch-decision-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin: 0 0 28px;
}

.gch-decision-card {
	padding: 18px 20px;
	border-radius: 8px;
}

.gch-decision-card--yes {
	background: #e6f5f0;
	border: 1px solid #b8e0d4;
}

.gch-decision-card--no {
	background: #fff4f4;
	border: 1px solid #f0c4c4;
}

.gch-decision-card h3 {
	margin: 0 0 8px;
	font-size: 16px;
	line-height: 1.4;
}

.gch-decision-card--yes h3 {
	color: var(--uev-teal);
}

.gch-decision-card--no h3 {
	color: #b03030;
}

.gch-decision-card p {
	margin: 0 0 8px;
	font-size: 14px;
	line-height: 1.6;
}

.gch-decision-card--yes p {
	color: #1a5040;
}

.gch-decision-card--no p {
	color: #6b2020;
}

.gch-decision-source {
	display: inline-block;
	font-size: 12px;
	font-style: italic;
}

.gch-decision-card--yes .gch-decision-source {
	color: #0d8c6d;
}

.gch-decision-card--no .gch-decision-source {
	color: #b03030;
}

/* Small YES / NO badges inside the normal Canada table UI. */
.gch-badge {
	display: inline-block;
	padding: 3px 10px;
	border-radius: 999px;
	font-size: 11px;
	line-height: 1.3;
	font-weight: 700;
	white-space: nowrap;
}

.gch-badge--yes {
	background: #e6f5f0;
	border: 1px solid #b8e0d4;
	color: #0b6b52;
}

.gch-badge--no {
	background: #fff4f4;
	border: 1px solid #f0c4c4;
	color: #b03030;
}

/* Source-page amber warning, kept within Canada spacing/typography. */
.gch-note-amber {
	margin-top: 25px;
	padding: 11px 14px;
	border-left: 3px solid #e8a84c;
	background: #fff8f0;
	color: #5a3a00;
	font-size: 16px;
}

.gch-note-amber p {
	margin: 0;
}

/* Only commercial element required by the SEO/content source. */
.gch-cta-box {
	margin-top: 25px;
	padding: 18px 20px;
	border-radius: 8px;
	background: var(--uev-teal);
	color: #fff;
}

.gch-cta-box h3 {
	margin: 0 0 8px;
	color: #fff;
	font-size: 18px;
	line-height: 1.4;
}

.gch-cta-box p {
	margin: 0;
	color: #fff;
	font-size: 15px;
	line-height: 1.6;
}

.gch-cta-box a {
	color: #fff;
	text-decoration: underline;
}

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

/* =========================================================
HAITI VISA PAGE — PAGE-SPECIFIC COMPONENTS
Append to existing shared visa-clone.css
========================================================= */

/* Haiti has one At a Glance item.
Keep the normal template styling, full width. */
.haiti-glance-grid {
	grid-template-columns: 1fr;
}

.haiti-glance-grid article {
	grid-template-columns: 220px minmax(0, 1fr);
}


/* =========================================================
DOCUMENTS REQUIRED
========================================================= */

.haiti-docs-list {
	list-style: none;
	margin: 14px 0;
	padding: 0;
}

.haiti-doc-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 14px 0;
	border-bottom: 1px solid var(--uev-line);
}

.haiti-doc-item:last-child {
	border-bottom: 0;
}

.haiti-doc-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 34px;
	width: 34px;
	height: 34px;
	border-radius: 6px;
	background: var(--uev-pale);
	font-size: 16px;
}

.haiti-doc-title {
	margin-bottom: 3px;
	font-size: 15px;
	font-weight: 700;
	color: var(--uev-ink);
}

.haiti-doc-desc {
	font-size: 14px;
	line-height: 1.6;
	color: #444;
}


/* =========================================================
HOW TO APPLY — 4 STEPS
========================================================= */

.haiti-steps {
	display: flex;
	flex-direction: column;
	margin: 10px 0 0;
}

.haiti-step {
	display: flex;
	gap: 14px;
	padding: 15px 0;
	border-bottom: 1px solid var(--uev-line);
}

.haiti-step:last-child {
	border-bottom: 0;
}

.haiti-step-num {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 28px;
	width: 28px;
	height: 28px;
	margin-top: 1px;
	border-radius: 50%;
	background: var(--uev-teal);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
}

.haiti-step p {
	margin: 0;
}


/* =========================================================
PROCESSING / GENERAL BULLET LISTS
========================================================= */

.haiti-bullets {
	margin: 12px 0 18px;
	padding-left: 20px;
}

.haiti-bullets li {
	margin-bottom: 8px;
	line-height: 1.65;
}


/* =========================================================
VISA PRICING
========================================================= */

.haiti-pricing-tier {
	margin-top: 28px;
}

.haiti-pricing-label {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 16px;
	font-size: 15px;
	font-weight: 700;
	color: var(--uev-ink);
}

.haiti-tier-pill {
	display: inline-block;
	padding: 4px 9px;
	border: 1px solid var(--uev-line);
	border-radius: 4px;
	background: #f5f5f5;
	font-size: 11px;
	line-height: 1.3;
	font-weight: 700;
	color: #555;
}

.haiti-tier-pill--express {
	border-color: var(--uev-teal);
	background: var(--uev-teal);
	color: #fff;
}

.haiti-price-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.haiti-price-card {
	position: relative;
	min-width: 0;
	padding: 20px 18px;
	border: 1px solid var(--uev-line);
	border-radius: 8px;
	background: #fff;
}

.haiti-price-card--featured {
	background: var(--uev-teal);
	border-color: var(--uev-teal);
	color: #fff;
}

.haiti-price-badge {
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	padding: 4px 10px;
	border-radius: 999px;
	background: #c9a84c;
	color: #fff;
	font-size: 10px;
	line-height: 1.2;
	font-weight: 700;
	white-space: nowrap;
}

.haiti-price-duration {
	margin-bottom: 8px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .04em;
	color: #777;
}

.haiti-price {
	margin-bottom: 5px;
	font-size: 30px;
	line-height: 1;
	font-weight: 800;
	color: var(--uev-ink);
}

.haiti-price small {
	font-size: 13px;
	font-weight: 600;
}

.haiti-price-usd {
	margin-bottom: 7px;
	font-size: 12px;
	color: #777;
}

.haiti-price-type {
	margin-bottom: 12px;
	font-size: 13px;
	font-weight: 700;
	color: #444;
}

.haiti-price-features {
	list-style: none !important;
	margin: 0;
	padding: 10px 0 0;
	border-top: 1px solid var(--uev-line);
}

.haiti-price-features li {
	position: relative;
	padding: 4px 0 4px 14px;
	font-size: 12px;
	line-height: 1.45;
	color: #555;
}

.haiti-price-features li::before {
	content: "–";
	position: absolute;
	left: 0;
	top: 4px;
	color: var(--uev-teal);
	font-weight: 700;
}


/* Featured card text */

.haiti-price-card--featured .haiti-price-duration,
.haiti-price-card--featured .haiti-price,
.haiti-price-card--featured .haiti-price-usd,
.haiti-price-card--featured .haiti-price-type {
	color: #fff;
}

.haiti-price-card--featured .haiti-price-features {
	border-color: rgba(255, 255, 255, .22);
}

.haiti-price-card--featured .haiti-price-features li {
	color: rgba(255, 255, 255, .92);
}

.haiti-price-card--featured .haiti-price-features li::before {
	color: rgba(255, 255, 255, .75);
}


/* Price note */

.haiti-price-note {
	margin-top: 16px;
	padding: 12px 14px;
	border: 1px solid var(--uev-line);
	border-radius: 6px;
	background: #f7f7f7;
	font-size: 13px;
	line-height: 1.6;
	color: #444;
}

.haiti-price-note strong {
	color: var(--uev-teal);
}


/* =========================================================
RELATED GUIDES
========================================================= */

.haiti-related-list {
	margin: 10px 0 0;
	padding-left: 20px;
}

.haiti-related-list li {
	margin-bottom: 8px;
	line-height: 1.55;
}


/* =========================================================
HAITI PAGE ANCHOR OFFSET
========================================================= */

#documents,
#how-to-apply,
#processing,
#pricing,
#visa-covers,
#related,
#faq {
	scroll-margin-top: 24px;
}


/* =========================================================
RESPONSIVE
========================================================= */

@media (max-width: 900px) {

	.haiti-glance-grid article {
		display: block;
	}

	.haiti-price-grid {
		grid-template-columns: 1fr;
	}

	.haiti-price-card {
		padding: 18px;
	}
}

@media (max-width: 600px) {

	.haiti-doc-item {
		gap: 10px;
	}

	.haiti-doc-title {
		font-size: 14px;
	}

	.haiti-doc-desc {
		font-size: 13px;
	}

	.haiti-step {
		gap: 10px;
	}

	.haiti-price {
		font-size: 28px;
	}
}

/* =========================================================
INDONESIAN PAGE UPDATE
Only: Hero Trust Bar + Related Guides UI
========================================================= */


/* =========================================================
HERO TRUST BAR
========================================================= */

.uev-hero-v2 .uev-hero-trust {
	border-top: 1px solid var(--uev-line);
	padding-top: 22px;
	margin-top: 22px;
}

.uev-hero-v2 .uev-trust-desktop {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	background: #f6f6f6;
	border: 1px solid #eee;
	border-radius: 32px;
	padding: 12px 18px;
	font-size: 16px;
}

.uev-hero-v2 .uev-review-brand {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
}

.uev-hero-v2 .uev-review-brand img {
	object-fit: contain;
	flex-shrink: 0;
}

.uev-hero-v2 .uev-trust-mobile {
	display: none;
}


/* =========================================================
RELATED GUIDES
Same visual pattern taken from Express Visa steps UI
========================================================= */

.uev-related-guides {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.uev-related-guides article {
	min-height: 125px;
	border-top: 1px solid var(--uev-line);
	padding: 16px 30px 20px 0;
	position: relative;
}

.uev-related-guides a {
	display: block;
	height: 100%;
	padding-right: 28px;
	color: var(--uev-ink);
	text-decoration: none;
}

.uev-related-guides a:hover h3,
.uev-related-guides a:focus-visible h3 {
	color: var(--uev-teal);
}

.uev-related-guides b {
	font-size: 12px;
	color: var(--uev-teal);
	font-weight: 600;
}

.uev-related-guides h3 {
	font-size: 20px;
	line-height: 1.15;
	margin: 18px 0 0;
	font-weight: 700;
	transition: color .18s ease;
}


/* Remove the large normal section gap only for Related Guides */

#related:not(.haiti-related) {
	padding-top: 0;
}


/* =========================================================
TABLET / MOBILE
========================================================= */

@media (max-width: 900px) {

	.uev-hero-v2 .uev-trust-desktop {
		display: none;
	}

	.uev-hero-v2 .uev-trust-mobile {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 8px;
		padding: 10px 14px;
		border: 1px solid #eee;
		border-radius: 28px;
		background: #f6f6f6;
		font-size: 11px;
	}

	.uev-related-guides {
		grid-template-columns: 1fr;
	}

	.uev-related-guides article {
		min-height: 92px;
		padding-right: 0;
	}

	.uev-related-guides a {
		padding-right: 0;
	}

	.uev-related-guides h3 {
		margin-top: 14px;
		font-size: 22px;
	}
}


@media (max-width: 767px) {

	.uev-related-guides h3 {
		font-size: 20px;
	}
}

/* =========================================================
EGYPT VISA PAGE — ONLY NEW COMPONENTS
At a Glance uses the normal shared UI with no inner cards.
========================================================= */
.egypt-stat-row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin: 26px 0 0
}

.egypt-stat {
	padding: 18px;
	border: 1px solid var(--uev-line);
	border-radius: 8px;
	background: #fff;
	text-align: center
}

.egypt-stat strong {
	display: block;
	margin-bottom: 6px;
	color: var(--uev-teal);
	font-size: 28px;
	line-height: 1;
	font-weight: 800
}

.egypt-stat span {
	color: #666;
	font-size: 13px;
	line-height: 1.4
}

.egypt-processing-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin: 18px 0 0
}

.egypt-processing-card {
	padding: 20px;
	border: 1px solid var(--uev-line);
	border-radius: 8px;
	background: #fff
}

.egypt-processing-card--express {
	border-color: var(--uev-teal);
	background: var(--uev-teal);
	color: #fff
}

.egypt-processing-label {
	margin-bottom: 8px;
	color: #777;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .06em;
	text-transform: uppercase
}

.egypt-processing-card--express .egypt-processing-label {
	color: rgba(255, 255, 255, .7)
}

.egypt-processing-time {
	margin-bottom: 6px;
	color: var(--uev-ink);
	font-size: 28px;
	line-height: 1.1;
	font-weight: 800
}

.egypt-processing-card--express .egypt-processing-time {
	color: #fff
}

.egypt-processing-note {
	margin: 0;
	color: #555;
	font-size: 14px;
	line-height: 1.55
}

.egypt-processing-card--express .egypt-processing-note {
	color: rgba(255, 255, 255, .9)
}

.egypt-weekend-box {
	margin-top: 18px;
	padding: 13px 15px;
	border-left: 3px solid #d85a30;
	background: #fff8f4;
	color: #6b3000;
	font-size: 14px;
	line-height: 1.6
}

.egypt-weekend-box strong {
	color: #993c1d
}

.egypt-rule-box {
	margin-top: 18px;
	padding: 18px 20px;
	border: 1.5px solid #c9a84c;
	border-radius: 8px;
	background: #fffbf0
}

.egypt-rule-box h3 {
	margin: 0 0 8px;
	color: #7a5c00;
	font-size: 17px;
	line-height: 1.4
}

.egypt-rule-box p {
	margin: 0;
	color: #6b4800;
	font-size: 14px;
	line-height: 1.65
}

.egypt-reverse-box {
	margin-top: 18px;
	padding: 18px 20px;
	border: 1.5px solid #c7d2fe;
	border-radius: 8px;
	background: #f8f8ff
}

.egypt-reverse-box h3 {
	margin: 0 0 8px;
	color: #3730a3;
	font-size: 17px;
	line-height: 1.4
}

.egypt-reverse-box p {
	margin: 0;
	color: #4338ca;
	font-size: 14px;
	line-height: 1.65
}

.visa-price-table-block {
	margin-top: 28px
}

.visa-price-table-heading {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 10px
}

.visa-price-table-heading strong {
	font-size: 16px;
	color: var(--uev-ink)
}

.visa-price-table-heading>span {
	padding: 4px 9px;
	border: 1px solid var(--uev-line);
	border-radius: 4px;
	background: #f5f5f5;
	font-size: 11px;
	font-weight: 700;
	color: #555
}

.visa-price-table-heading .visa-price-express {
	border-color: var(--uev-teal);
	background: var(--uev-teal);
	color: #fff
}

.visa-price-table-featured th,
.visa-price-table-featured td {
	background: #e6f5f0 !important
}

.visa-price-badge {
	display: inline-block;
	margin-left: 6px;
	padding: 3px 7px;
	border-radius: 999px;
	background: #c9a84c;
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	white-space: nowrap
}

.egypt-price-note {
	margin-top: 14px;
	padding: 12px 14px;
	border: 1px solid var(--uev-line);
	border-radius: 6px;
	background: #f7f7f7;
	font-size: 13px;
	line-height: 1.6;
	color: #444
}

#documents,
#how-to-apply,
#processing,
#pricing,
#financial-requirements,
#visa-types,
#tracking,
#egypt-visa-from-uae,
#faq {
	scroll-margin-top: 24px
}

@media(max-width:900px) {

	.egypt-stat-row,
	.egypt-processing-grid {
		grid-template-columns: 1fr
	}

	.visa-price-table {
		min-width: 760px
	}
}

/* =========================================================
EGYPT AT A GLANCE — CLEANER / MINIMAL SEPARATORS
========================================================= */

#at-a-glance .uev-glance-grid {
	grid-template-columns: 1fr;
}

#at-a-glance .uev-glance-grid article {
	grid-template-columns: 220px minmax(0, 1fr);
	max-width: 850px;
}


/* Long summary: no top/bottom border */
.uev-glance-summary {
	margin-top: 18px;
	padding: 4px 0 0;
	border: 0;
}

.uev-glance-summary p {
	max-width: 1120px;
	margin: 0;
	color: #fff;
	font-size: 14px;
	line-height: 1.65;
}

.uev-glance-summary a {
	color: #27bdbe;
	text-decoration: underline;
}


/* Stats: only one separator above */
.egypt-stat-row {
	margin-top: 24px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, .18);

	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.egypt-stat {
	padding: 18px 14px;
	border: 0;
	border-radius: 6px;
	background: #fff;
	text-align: center;
}

.egypt-stat strong {
	display: block;
	margin-bottom: 8px;
	color: var(--uev-teal);
	font-size: 28px;
	line-height: 1;
	font-weight: 800;
}

.egypt-stat span {
	color: #555;
	font-size: 13px;
	line-height: 1.4;
}


/* Mobile */
@media (max-width: 900px) {

	#at-a-glance .uev-glance-grid article {
		display: block;
		max-width: none;
	}

	.egypt-stat-row {
		grid-template-columns: 1fr;
		gap: 10px;
	}
}

/* =========================================================
ALBANIA VISA PAGE — ONLY NEW / PAGE-SCOPED COMPONENTS
========================================================= */

/* The shared Egypt rules force #at-a-glance to one column.
Restore the normal two-column glance UI only for Albania. */
.albania-page #at-a-glance .uev-glance-grid {
	grid-template-columns: 1fr 1fr;
}

.albania-page #at-a-glance .uev-glance-grid article {
	grid-template-columns: 220px 1fr;
	max-width: none;
}

/* 2026 policy-change banner from the supplied Albania HTML */
.albania-update-banner {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 0 0 20px;
	padding: 12px 16px;
	border: 1px solid #8fb9ff;
	border-radius: 6px;
	background: #eaf2ff;
	color: #173f8f;
	font-size: 14px;
	line-height: 1.55;
}

.albania-update-banner strong {
	color: #173f8f;
}

/* Source chip directly below the facts table */
.albania-source-chip {
	display: inline-block;
	margin: -8px 0 2px;
	padding: 5px 10px;
	border-radius: 4px;
	background: #e6f5f0;
	color: #0b6562;
	font-size: 12px;
	line-height: 1.35;
}

/* Informational note for non-Albanian residents */
.albania-info-note {
	margin-top: 20px;
	padding: 11px 14px;
	border-left: 3px solid var(--uev-teal);
	background: var(--uev-pale);
	color: #1a5040;
	font-size: 15px;
	line-height: 1.6;
}

.albania-info-note p {
	margin: 0;
}

#albanian-nationals,
#stay-beyond-90-days,
#other-nationals,
#faq {
	scroll-margin-top: 24px;
}

@media (max-width: 900px) {
	.albania-page #at-a-glance .uev-glance-grid {
		grid-template-columns: 1fr;
	}

	.albania-page #at-a-glance .uev-glance-grid article {
		display: block;
	}
}

/* =========================================================
   TUNISIA VISA PAGE — SPACING FIXES ONLY
   Keeps existing shared UI unchanged.
   ========================================================= */

.tunisia-page #financial-requirements .egypt-rule-box+p {
	margin-top: 18px;
}

.tunisia-page #passport-power .egypt-stat-row+p {
	margin-top: 18px;
}

.tunisia-page #payment .egypt-reverse-box p+p {
	margin-top: 12px;
}

.tunisia-page #tunisia-visa-from-dubai .egypt-reverse-box .haiti-related-list+p {
	margin-top: 16px;
}