/*
 * ═══════════════════════════════════════════════════════════════
 * HOMEPAGE — page-specific styles only
 * css/page-home.css
 *
 * Everything shared (tokens, nav, footer, cards, buttons, etc.)
 * is in ukva-styles.css. This file contains only homepage
 * section styling.
 *
 * Mobile-first. Breakpoints: 600 / 1024 / 1280.
 * ═══════════════════════════════════════════════════════════════
 */

/* ── Hero ─────────────────────────────── */
.hero {
	position: relative;
	min-height: 540px;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: var(--white);
}

.hero-bg-img {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: url('../img/hero-homepage.webp') center / cover no-repeat;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		105deg,
		rgba(240, 243, 255, 0.96) 0%,
		rgba(240, 243, 255, 0.86) 42%,
		rgba(240, 243, 255, 0.30) 100%
	);
}

.hero-content {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 80px var(--gutter) 72px;
	text-align: center;
}

.hero-eyebrow {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--blue);
	margin-bottom: 20px;
}

.hero h1 {
	font-family: var(--font-display);
	font-size: clamp(26px, 3.5vw, 44px);
	font-weight: 400;
	color: var(--navy);
	line-height: 1.22;
	max-width: 720px;
	margin: 0 auto 22px;
}

.hero-sub {
	font-size: 15px;
	color: var(--gray-600);
	line-height: 1.75;
	margin: 0 auto 36px;
	max-width: 580px;
}

.hero-actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.hero-actions .btn-primary,
.hero-actions .btn-outline {
	width: 100%;
	max-width: 300px;
}

.hero-scroll {
	display: none;
}


/* ── Services ─────────────────────────── */
.services {
	padding: var(--space-xl) 0;
	border-bottom: 1px solid var(--border);
}

.services-title {
	font-family: var(--font-display);
	font-size: 20px;
	font-weight: 400;
	color: var(--navy);
	margin-bottom: var(--space-md);
}


/* Why Us: styles in ukva-styles.css §26 */


/* ── Visa Types ───────────────────────── */
.visa-types {
	padding: var(--space-xl) 0;
	background: var(--gray-50);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}

.visa-types-left {
	margin-bottom: var(--space-lg);
}

.visa-types-left h2 {
	font-family: var(--font-display);
	font-size: 24px;
	font-weight: 400;
	color: var(--navy);
	margin-bottom: 14px;
	line-height: 1.3;
}

.visa-types-left p {
	font-size: 14px;
	color: var(--gray-600);
	line-height: 1.75;
	margin-bottom: 10px;
}

.visa-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1px;
	background: var(--border);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	align-content: stretch;
}

.visa-item {
	background: var(--white);
	padding: 22px 20px;
	cursor: pointer;
	display: flex;
	flex-direction: column;
}

@media (prefers-reduced-motion: no-preference) {
	.visa-item {
		transition: background 0.12s;
	}
}

.visa-item:hover {
	background: var(--blue-pale);
}

.visa-item h4 {
	font-size: 13px;
	font-weight: 600;
	color: var(--navy);
	margin-bottom: 5px;
	line-height: 1.3;
}

.visa-item p {
	font-size: 11.5px;
	color: var(--gray-500);
	line-height: 1.5;
	flex: 1;
}

.visa-item-arrow {
	margin-top: 12px;
	font-size: 13px;
	color: var(--gray-400);
}

@media (prefers-reduced-motion: no-preference) {
	.visa-item-arrow {
		transition: color 0.12s;
	}
}

.visa-item:hover .visa-item-arrow {
	color: var(--blue);
}


/* ── Sponsor Licence ──────────────────── */
.sponsor {
	padding: var(--space-xl) 0;
	border-bottom: 1px solid var(--border);
}

.sponsor-content {
	margin-bottom: var(--space-lg);
}

.sponsor-content h2 {
	font-family: var(--font-display);
	font-size: 24px;
	font-weight: 400;
	color: var(--navy);
	margin-bottom: 14px;
	line-height: 1.3;
}

.sponsor-content p {
	font-size: 14px;
	color: var(--gray-600);
	line-height: 1.75;
	margin-bottom: 12px;
}

.sponsor-list {
	list-style: none;
	margin: 20px 0 28px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.sponsor-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 13.5px;
	color: var(--gray-700);
	line-height: 1.55;
}

.sponsor-list li::before {
	content: '';
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	margin-top: 1px;
	border-radius: 50%;
	background: var(--blue-pale) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%233333CC' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center / 12px no-repeat;
	border: 1.5px solid var(--blue);
}

.sponsor-card {
	background: var(--navy);
	border-radius: var(--radius-md);
	padding: 32px 28px;
	color: var(--white);
}

.sponsor-card-label {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.4);
	margin-bottom: 20px;
}

.sponsor-stat {
	margin-bottom: 16px;
}

.sponsor-stat .num {
	font-family: var(--font-display);
	font-size: 36px;
	font-weight: 700;
	color: var(--white);
	line-height: 1;
}

.sponsor-stat .lbl {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.5);
	margin-top: 3px;
}

.sponsor-hr {
	height: 1px;
	background: rgba(255, 255, 255, 0.1);
	margin: 16px 0;
}

.sponsor-note {
	font-size: 11.5px;
	color: rgba(255, 255, 255, 0.4);
	line-height: 1.6;
	margin-top: 16px;
}

.sponsor-cta-btn {
	display: block;
	width: 100%;
	background: var(--blue);
	color: var(--white);
	padding: 13px 20px;
	border-radius: var(--radius);
	font-size: 13px;
	font-weight: 600;
	text-align: center;
	margin-top: 20px;
	cursor: pointer;
	border: none;
	font-family: var(--font-body);
}

@media (prefers-reduced-motion: no-preference) {
	.sponsor-cta-btn {
		transition: background 0.15s;
	}
}

.sponsor-cta-btn:hover {
	background: var(--blue-mid);
}


/* News strip rules migrated to ukva-styles.css §12b (2026-05-07). */


/* ── About Split ──────────────────────── */
.about {
	overflow: hidden;
}

.about-image {
	width: 100%;
	height: 280px;
	background: url('../img/about-team.webp') center / cover no-repeat;
}

.about-content {
	padding: var(--space-xl) var(--gutter);
	background: var(--white);
	border-bottom: 1px solid var(--border);
}

.about-content h2 {
	font-family: var(--font-display);
	font-size: 22px;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 14px;
}

.about-content p {
	font-size: 14px;
	color: var(--gray-600);
	line-height: 1.75;
	margin-bottom: 10px;
}


/* Process Steps: styles in ukva-styles.css §27 */




/* ── SEO Content Blocks ───────────────── */
.seo-block {
	padding: var(--space-xl) 0;
	border-bottom: 1px solid var(--border);
}

.seo-block-alt {
	background: var(--gray-50);
}

.seo-main h2 {
	font-family: var(--font-display);
	font-size: 22px;
	font-weight: 400;
	color: var(--navy);
	margin-bottom: 12px;
	line-height: 1.3;
}

.seo-main h3 {
	font-size: 16px;
	font-weight: 600;
	color: var(--navy);
	margin: 20px 0 8px;
}

.seo-main p {
	font-size: 14px;
	color: var(--gray-600);
	line-height: 1.8;
	margin-bottom: 10px;
}

.seo-main ul {
	padding-left: 18px;
	margin-bottom: 10px;
}

.seo-main li {
	font-size: 13.5px;
	color: var(--gray-600);
	line-height: 1.75;
	margin-bottom: 4px;
}

.seo-side {
	margin-top: var(--space-lg);
}

.seo-side-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	padding: 24px 20px;
}

.seo-side-card h4 {
	font-size: 14px;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 14px;
}

.seo-side-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 9px 0;
	border-bottom: 1px solid var(--border);
}

.seo-side-item:last-of-type {
	border-bottom: none;
}

.seo-side-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--blue);
	flex-shrink: 0;
	margin-top: 7px;
}

.seo-side-item span {
	font-size: 13px;
	color: var(--gray-700);
}

.seo-side-cta {
	margin-top: 18px;
	padding-top: 18px;
	border-top: 1px solid var(--border);
}

.seo-side-cta p {
	font-size: 12.5px;
	color: var(--gray-500);
	margin-bottom: 12px;
	line-height: 1.5;
}

.seo-side-cta .btn-primary {
	width: 100%;
}


/* ═══════════════════════════════════════
   BREAKPOINTS
═══════════════════════════════════════ */

/* ── 600px (Tablet) ───────────────────── */
@media (min-width: 600px) {
	.hero {
		min-height: 580px;
	}

	.hero h1 {
		font-size: clamp(30px, 3.5vw, 44px);
	}

	.hero-actions {
		flex-direction: row;
		justify-content: center;
	}

	.hero-actions .btn-primary,
	.hero-actions .btn-outline {
		width: auto;
		max-width: none;
	}

	/* Features grid + steps: responsive in ukva-styles.css §21 */

	.visa-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	/* .news-grid responsive moved to ukva-styles.css §12b. */
}

/* ── 1024px (Desktop) ─────────────────── */
@media (min-width: 1024px) {
	.hero {
		min-height: 620px;
	}

	.hero h1 {
		font-size: clamp(34px, 3.5vw, 44px);
	}

	.hero-sub {
		font-size: 16px;
	}

	.hero-scroll {
		display: flex;
		position: absolute;
		bottom: 28px;
		right: 40px;
		z-index: 2;
		width: 36px;
		height: 36px;
		border-radius: 50%;
		border: 1.5px solid var(--gray-300);
		align-items: center;
		justify-content: center;
		color: var(--gray-400);
		font-size: 14px;
		cursor: pointer;
		background: var(--white);
	}

	@media (prefers-reduced-motion: no-preference) {
		.hero-scroll {
			transition: all 0.15s;
		}
	}

	.hero-scroll:hover {
		border-color: var(--blue);
		color: var(--blue);
	}

	.services-title {
		font-size: 24px;
	}

	/* .why-us-heading responsive: ukva-styles.css §21 */

	.visa-types-inner {
		display: grid;
		grid-template-columns: 300px 1fr;
		gap: 72px;
		align-items: stretch;
	}

	.visa-types-left {
		margin-bottom: 0;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
	}

	.visa-types-left h2 {
		font-size: 28px;
	}

	.visa-grid {
		grid-template-columns: repeat(3, 1fr);
		align-content: stretch;
		align-self: stretch;
	}

	.sponsor-inner {
		display: grid;
		grid-template-columns: 1fr 340px;
		gap: 72px;
		align-items: start;
	}

	.sponsor-content {
		margin-bottom: 0;
	}

	.sponsor-content h2 {
		font-size: 28px;
	}

	/* .news-grid responsive moved to ukva-styles.css §12b. */

	.about-wrap {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	.about-image {
		height: auto;
		min-height: 440px;
	}

	.about-content {
		padding: 72px 60px;
		border-bottom: none;
		border-left: 1px solid var(--border);
	}

	.about-content h2 {
		font-size: 26px;
	}

	.seo-inner {
		display: grid;
		grid-template-columns: 1fr 300px;
		gap: 72px;
		align-items: start;
	}

	.seo-side {
		margin-top: 0;
	}

	.seo-inner.reversed {
		grid-template-columns: 300px 1fr;
	}

	.seo-inner.reversed .seo-main {
		order: 2;
	}

	.seo-inner.reversed .seo-side {
		order: 1;
	}

	.seo-side-card {
		position: sticky;
		top: calc(var(--nav-h) + 20px);
	}
}

/* ── 1280px (Wide) ────────────────────── */
@media (min-width: 1280px) {
	.hero {
		min-height: 640px;
	}

	.hero h1 {
		font-size: 44px;
	}
}
