:root {
	--ukhi-navy: #16005b;
	--ukhi-navy-dark: #0d003b;
	--ukhi-green: #2cf20c;
	--ukhi-green-dark: #20d907;
	--ukhi-text: #1d1638;
	--ukhi-muted: #6e6980;
	--ukhi-border: #e6e2ef;
	--ukhi-white: #ffffff;
	--ukhi-background: #f8f7fc;
	--ukhi-error: #c93636;
	--ukhi-success: #167443;
	--ukhi-purple: #16005b;
	--ukhi-purple-dark: #0d003b;
	--ukhi-purple-light: #2b0878;
	--ukhi-dl-purple: #16005b;
	--ukhi-dl-purple-dark: #0d003b;
	--ukhi-dl-purple-light: #2b0878;
	--ukhi-green-soft: #efffe9;
	--ukhi-purple-soft: #f3efff;
	--ukhi-shadow-sm: 0 10px 30px rgba(13, 0, 59, 0.10);
	--ukhi-shadow-md: 0 24px 60px rgba(13, 0, 59, 0.18);
	--ukhi-shadow-lg: 0 34px 90px rgba(13, 0, 59, 0.28);
}

.ukhi-company-hero *,
.ukhi-company-hero *::before,
.ukhi-company-hero *::after,
.ukhi-enquiry-modal *,
.ukhi-enquiry-modal *::before,
.ukhi-enquiry-modal *::after {
	box-sizing: border-box;
}

html.ukhi-modal-open,
body.ukhi-modal-open {
	overflow: hidden !important;
}

/* Main hero */

.ukhi-company-hero {
	position: relative;
	overflow: hidden;
	width: 100%;
	padding: 60px 24px;
	background:
		radial-gradient(
			circle at 85% 15%,
			rgba(44, 242, 12, 0.20),
			transparent 27%
		),
		radial-gradient(
			circle at 10% 90%,
			rgba(44, 242, 12, 0.10),
			transparent 30%
		),
		linear-gradient(
			135deg,
			var(--ukhi-dl-purple-dark) 0%,
			var(--ukhi-dl-purple) 52%,
			var(--ukhi-dl-purple-light) 100%
		);
	color: var(--ukhi-white);
	font-family: "Public Sans", Arial, sans-serif;
}

.ukhi-company-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(
			rgba(255, 255, 255, 0.025) 1px,
			transparent 1px
		),
		linear-gradient(
			90deg,
			rgba(255, 255, 255, 0.025) 1px,
			transparent 1px
		);
	background-size: 48px 48px;
	mask-image: linear-gradient(to bottom, #000, transparent);
}

.ukhi-hero-inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 430px;
	gap: 48px;
	align-items: center;
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
}

.ukhi-hero-main {
	display: flex;
	gap: 30px;
	align-items: center;
	min-width: 0;
}

/* Square logo */

.ukhi-company-logo-wrap {
	display: flex;
	flex: 0 0 160px;
	align-items: center;
	justify-content: center;
	width: 160px;
	height: 160px;
	padding: 14px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 22px 55px rgba(0, 0, 0, 0.2);
}

.ukhi-company-logo {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	max-width: 100% !important;
	max-height: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	object-fit: contain !important;
	object-position: center !important;
}

.ukhi-company-logo-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background: var(--ukhi-navy);
	color: var(--ukhi-green);
	font-size: 64px;
	font-weight: 800;
	line-height: 1;
}

.ukhi-company-content {
	min-width: 0;
}

.ukhi-company-directory-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
	color: var(--ukhi-green);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.ukhi-company-directory-label::before {
	content: "";
	display: block;
	width: 26px;
	height: 2px;
	border-radius: 20px;
	background: currentColor;
}

.ukhi-company-hero .ukhi-company-title,
.ukhi-company-title {
	margin: 0 0 16px !important;
	color: #fff !important;
	font-family: inherit !important;
	font-size: clamp(38px, 4.5vw, 64px) !important;
	font-weight: 700 !important;
	letter-spacing: -0.04em !important;
	line-height: 1.04 !important;
}

.ukhi-company-description {
	max-width: 690px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 17px;
	line-height: 1.7;
}

.ukhi-company-description p {
	margin: 0 !important;
	color: inherit !important;
}

.ukhi-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 13px;
	margin-top: 28px;
}

.ukhi-company-hero .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 52px;
	padding: 13px 22px;
	border: 1px solid transparent;
	border-radius: 9px;
	cursor: pointer;
	font-family: inherit;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none !important;
	transition:
		transform 0.2s ease,
		background 0.2s ease,
		border-color 0.2s ease,
		box-shadow 0.2s ease;
}

.ukhi-company-hero .btn svg {
	width: 19px;
	height: 19px;
	flex: 0 0 19px;
}

.ukhi-company-hero .btn:hover {
	transform: translateY(-2px);
}

.ukhi-company-hero .btn-lime {
	border-color: var(--ukhi-green);
	background: var(--ukhi-green);
	color: #13004f !important;
	box-shadow: 0 14px 30px rgba(44, 242, 12, 0.24);
}

.ukhi-company-hero .btn-lime:hover {
	border-color: var(--ukhi-green-dark);
	background: var(--ukhi-green-dark);
	color: #13004f !important;
}

.ukhi-company-hero .btn-glass {
	border-color: rgba(255, 255, 255, 0.3);
	background: rgba(255, 255, 255, 0.07);
	color: #fff !important;
	backdrop-filter: blur(10px);
}

.ukhi-company-hero .btn-glass:hover {
	border-color: rgba(255, 255, 255, 0.55);
	background: rgba(255, 255, 255, 0.14);
	color: #fff !important;
}

/* Company information card */

.ukhi-company-info-card {
	padding: 27px;
	border: 1px solid rgba(255, 255, 255, 0.17);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.96);
	color: var(--ukhi-text);
	box-shadow: 0 30px 70px rgba(0, 0, 0, 0.24);
	backdrop-filter: blur(18px);
}

.ukhi-info-card-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 15px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--ukhi-border);
}

.ukhi-info-eyebrow {
	display: block;
	margin-bottom: 6px;
	color: #787187;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.ukhi-company-info-card h2 {
	margin: 0 !important;
	color: var(--ukhi-text) !important;
	font-family: inherit !important;
	font-size: 22px !important;
	font-weight: 700 !important;
	line-height: 1.25 !important;
}

.ukhi-info-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 46px;
	width: 46px;
	height: 46px;
	border-radius: 12px;
	background: rgba(44, 242, 12, 0.14);
	color: #4a00a8;
}

.ukhi-info-icon svg {
	width: 23px;
	height: 23px;
}

.ukhi-info-list {
	display: grid !important;
	gap: 0 !important;
	margin: 0 !important;
	padding: 5px 0 !important;
	border: 0 !important;
}

.ukhi-info-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 13px 0;
	border-bottom: 1px solid var(--ukhi-border);
}
.ukhi-info-item-content {
	flex: 1;
	min-width: 0;
}

.ukhi-info-item:last-child {
	border-bottom: 0;
}

.ukhi-info-item-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 42px;
	width: 42px;
	height: 42px;
	border: 1px solid #e4def1;
	border-radius: 10px;
	background: #f7f4ff;
	color: #4a00a8;
}

.ukhi-info-item-icon svg {
	width: 21px;
	height: 21px;
}

.ukhi-info-label {
	display: block;
	margin-bottom: 3px;
	color: var(--ukhi-muted);
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
}

.ukhi-info-value {
	display: block;
	color: var(--ukhi-text);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.35;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.ukhi-info-link {
	display: inline-block;
	color: var(--ukhi-text) !important;
	text-decoration: none !important;
	transition: color 0.2s ease;
}

.ukhi-info-link:hover {
	color: #4a00a8 !important;
}

.ukhi-info-item-address .ukhi-info-value {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.55;
}

.ukhi-company-hero .ukhi-hero-meta-icon svg,
.ukhi-company-hero .ukhi-hero-meta-item svg {
	display: block !important;
	flex: 0 0 21px !important;
	width: 21px !important;
	height: 21px !important;
	min-width: 21px !important;
	min-height: 21px !important;
	max-width: 21px !important;
	max-height: 21px !important;
	margin: 0 !important;
	padding: 0 !important;
	position: static !important;
	transform: none !important;
}

.ukhi-company-info-card .ukhi-info-icon svg {
	width: 23px !important;
	height: 23px !important;
	max-width: 23px !important;
	max-height: 23px !important;
}

.ukhi-company-info-card .ukhi-info-item-icon {
	display: flex !important;
	flex: 0 0 40px !important;
	align-items: center !important;
	justify-content: center !important;
	width: 40px !important;
	height: 40px !important;
	min-width: 40px !important;
	min-height: 40px !important;
	max-width: 40px !important;
	max-height: 40px !important;
}

.ukhi-company-info-card .ukhi-info-item-icon svg {
	display: block !important;
	width: 20px !important;
	height: 20px !important;
	min-width: 20px !important;
	min-height: 20px !important;
	max-width: 20px !important;
	max-height: 20px !important;
	margin: 0 !important;
	padding: 0 !important;
	position: static !important;
	transform: none !important;
}

.ukhi-hero-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
	margin-top: 28px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.ukhi-hero-meta-item {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 160px;
}

.ukhi-hero-meta-icon {
	display: flex;
	flex: 0 0 44px;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	min-width: 44px;
	min-height: 44px;
	max-width: 44px;
	max-height: 44px;
	border: 1px solid rgba(44, 242, 12, 0.30);
	border-radius: 11px;
	background: rgba(44, 242, 12, 0.12);
	color: var(--ukhi-green);
	overflow: hidden;
}

.ukhi-hero-meta-item span {
	display: block;
	margin-bottom: 3px;
	color: rgba(255, 255, 255, 0.58);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.ukhi-hero-meta-item strong {
	display: block;
	color: #ffffff;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.4;
}

/* Claim listing */

.ukhi-claim-box {
	margin-top: 16px;
	padding: 18px;
	border: 1px solid #e4def1;
	border-radius: 13px;
	background: #f8f6ff;
}

.ukhi-claim-box-content strong {
	display: block;
	margin-bottom: 5px;
	color: var(--ukhi-text);
	font-size: 15px;
}

.ukhi-claim-box-content p {
	margin: 0 0 14px !important;
	color: var(--ukhi-muted) !important;
	font-size: 13px;
	line-height: 1.5;
}

.ukhi-claim-listing-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	min-height: 45px;
	padding: 11px 16px;
	border: 1px solid var(--ukhi-navy);
	border-radius: 8px;
	background: var(--ukhi-navy);
	color: #fff;
	cursor: pointer;
	font-family: inherit;
	font-size: 14px;
	font-weight: 700;
	transition:
		background 0.2s ease,
		transform 0.2s ease;
}

.ukhi-claim-listing-btn:hover {
	background: var(--ukhi-navy-dark);
	transform: translateY(-1px);
}

.ukhi-claim-listing-btn svg {
	width: 17px;
	height: 17px;
}

/* Modal */

.ukhi-enquiry-modal {
	position: fixed;
	z-index: 999999;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	transition:
		opacity 0.25s ease,
		visibility 0.25s ease;
	font-family: "Public Sans", Arial, sans-serif;
}

.ukhi-enquiry-modal.is-open {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
}

.ukhi-modal-overlay {
	position: absolute;
	inset: 0;
	background: rgba(2, 22, 28, 0.76);
	backdrop-filter: blur(8px);
}

.ukhi-modal-dialog {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 610px;
	max-height: calc(100vh - 48px);
	padding: 34px;
	overflow-y: auto;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 35px 100px rgba(0, 0, 0, 0.38);
	transform: translateY(20px) scale(0.98);
	transition: transform 0.25s ease;
}

.ukhi-enquiry-modal.is-open .ukhi-modal-dialog {
	transform: translateY(0) scale(1);
}

.ukhi-modal-close {
	position: absolute;
	top: 17px;
	right: 17px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	padding: 0;
	border: 1px solid var(--ukhi-border);
	border-radius: 50%;
	background: #f7f9f9;
	color: #635d74;
	cursor: pointer;
	transition:
		background 0.2s ease,
		color 0.2s ease,
		transform 0.2s ease;
}

.ukhi-modal-close:hover {
	background: var(--ukhi-navy);
	color: #fff;
	transform: rotate(5deg);
}

.ukhi-modal-close svg {
	width: 18px;
	height: 18px;
}

.ukhi-modal-header {
	display: flex;
	align-items: center;
	gap: 15px;
	padding-right: 45px;
}

.ukhi-modal-header-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 52px;
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: var(--ukhi-navy);
	color: var(--ukhi-green);
}

.ukhi-modal-header-icon svg {
	width: 25px;
	height: 25px;
}

.ukhi-modal-eyebrow {
	display: block;
	margin-bottom: 4px;
	color: #787187;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.ukhi-modal-header h2 {
	margin: 0 !important;
	color: var(--ukhi-text) !important;
	font-family: inherit !important;
	font-size: 27px !important;
	font-weight: 750 !important;
	line-height: 1.2 !important;
}

.ukhi-modal-company {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 22px 0;
	padding: 13px 15px;
	border: 1px solid #e4def1;
	border-radius: 10px;
	background: #f7f4ff;
	font-size: 13px;
}

.ukhi-modal-company span {
	color: var(--ukhi-muted);
	font-weight: 600;
}

.ukhi-modal-company strong {
	color: var(--ukhi-text);
	font-weight: 750;
}

.ukhi-enquiry-form {
	margin: 0;
}

.ukhi-form-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 15px;
}

.ukhi-form-field {
	margin-bottom: 16px;
}

.ukhi-form-field label {
	display: block;
	margin-bottom: 7px;
	color: #2c2545;
	font-size: 13px;
	font-weight: 700;
}

.ukhi-form-field label span {
	color: var(--ukhi-error);
}

.ukhi-form-field input,
.ukhi-form-field textarea {
	display: block;
	width: 100%;
	min-height: 49px;
	margin: 0;
	padding: 12px 14px;
	border: 1px solid #d8d3e4;
	border-radius: 8px;
	outline: none;
	background: #fff;
	color: var(--ukhi-text);
	font-family: inherit;
	font-size: 14px;
	line-height: 1.5;
	box-shadow: none;
	transition:
		border-color 0.2s ease,
		box-shadow 0.2s ease;
}

.ukhi-form-field textarea {
	min-height: 120px;
	resize: vertical;
}

.ukhi-form-field input:focus,
.ukhi-form-field textarea:focus {
	border-color: #2cf20c;
	box-shadow: 0 0 0 4px rgba(44, 242, 12, 0.16);
}

.ukhi-form-field input::placeholder,
.ukhi-form-field textarea::placeholder {
	color: #9aa7ab;
}

.ukhi-form-response {
	display: none;
	margin: 2px 0 16px;
	padding: 12px 14px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.5;
}

.ukhi-form-response--success,
.ukhi-form-response--error {
	display: block;
}

.ukhi-form-response--success {
	border: 1px solid #bfe4ce;
	background: #ebf8f0;
	color: var(--ukhi-success);
}

.ukhi-form-response--error {
	border: 1px solid #efc5c5;
	background: #fff0f0;
	color: var(--ukhi-error);
}

.ukhi-form-submit {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	min-height: 52px;
	padding: 13px 20px;
	border: 1px solid var(--ukhi-navy);
	border-radius: 9px;
	background: var(--ukhi-navy);
	color: #fff;
	cursor: pointer;
	font-family: inherit;
	font-size: 15px;
	font-weight: 700;
	transition:
		background 0.2s ease,
		transform 0.2s ease,
		opacity 0.2s ease;
}

.ukhi-form-submit:hover:not(:disabled) {
	background: var(--ukhi-navy-dark);
	transform: translateY(-1px);
}

.ukhi-form-submit:disabled {
	cursor: wait;
	opacity: 0.75;
}

.ukhi-form-submit svg {
	width: 19px;
	height: 19px;
}

.ukhi-submit-loader {
	display: none;
	width: 18px;
	height: 18px;
	border: 2px solid rgba(255, 255, 255, 0.35);
	border-top-color: #fff;
	border-radius: 50%;
	animation: ukhi-spin 0.7s linear infinite;
}

.ukhi-form-submit.is-loading .ukhi-submit-loader {
	display: block;
}

.ukhi-form-submit.is-loading svg {
	display: none;
}

.ukhi-honeypot {
	position: absolute !important;
	left: -99999px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	opacity: 0 !important;
}

@keyframes ukhi-spin {
	to {
		transform: rotate(360deg);
	}
}

/* Tablet */

@media (max-width: 1100px) {
	.ukhi-hero-inner {
		grid-template-columns: minmax(0, 1fr) 370px;
		gap: 28px;
	}

	.ukhi-hero-main {
		gap: 22px;
	}

	.ukhi-company-logo-wrap {
		flex-basis: 135px;
		width: 135px;
		height: 135px;
	}

	.ukhi-company-hero .ukhi-company-title {
		font-size: clamp(34px, 5vw, 50px) !important;
	}
}

@media (max-width: 900px) {
	.ukhi-hero-inner {
		display: block;
	}

	.ukhi-hero-main {
		display: block;
		text-align: center;
	}

	.ukhi-company-logo-wrap {
		margin: 0 auto 24px;
	}

	.ukhi-company-content {
		max-width: 100%;
	}

	.ukhi-company-directory-label {
		justify-content: center;
	}

	.ukhi-company-description {
		margin-right: auto;
		margin-left: auto;
	}

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

	.ukhi-hero-meta {
		justify-content: center;
		text-align: left;
	}

	.ukhi-company-info-card {
		width: 100%;
		max-width: 100%;
		margin-top: 32px;
	}
}
/* Mobile */

@media (max-width: 767px) {
	.ukhi-company-hero {
		padding: 38px 18px;
	}

	.ukhi-hero-inner {
		display: block;
	}

	.ukhi-hero-main {
		display: block;
		text-align: center;
	}

	.ukhi-company-logo-wrap {
		width: 130px;
		height: 130px;
		margin: 0 auto 23px;
	}

	.ukhi-company-directory-label {
		justify-content: center;
	}

	.ukhi-company-hero .ukhi-company-title {
		font-size: 37px !important;
		line-height: 1.08 !important;
	}

	.ukhi-company-description {
		font-size: 15px;
		line-height: 1.65;
	}

	.ukhi-hero-actions {
		display: grid;
		grid-template-columns: 1fr;
		margin-top: 23px;
	}

	.ukhi-company-hero .btn {
		width: 100%;
	}

	.ukhi-company-info-card {
		margin-top: 30px;
		padding: 22px;
		text-align: left;
	}

	.ukhi-enquiry-modal {
		align-items: flex-end;
		padding: 0;
	}

	.ukhi-modal-dialog {
		max-height: 92vh;
		padding: 27px 18px 22px;
		border-radius: 20px 20px 0 0;
	}

	.ukhi-modal-header {
		padding-right: 38px;
	}

	.ukhi-modal-header-icon {
		flex-basis: 45px;
		width: 45px;
		height: 45px;
	}

	.ukhi-modal-header h2 {
		font-size: 23px !important;
	}

	.ukhi-form-row {
		grid-template-columns: 1fr;
		gap: 0;
	}
	.ukhi-hero-meta {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
	margin-top: 23px;
	padding-top: 21px;
	text-align: left;
}

.ukhi-hero-meta-item {
	min-width: 0;
}

.ukhi-company-info-card {
	padding: 21px;
}
}

@media (max-width: 480px) {
	.ukhi-hero-meta {
		grid-template-columns: 1fr;
	}

	.ukhi-hero-meta-item {
		width: 100%;
	}

	.ukhi-company-title {
		font-size: 33px !important;
	}
}


/* =========================================================
   EMERGENCY UKHI HERO VISUAL FIX
   Keep this block at the absolute end of hero.css
========================================================= */

.ukhi-company-hero {
	display: block !important;
	position: relative !important;
	width: 100% !important;
	padding: 60px 24px !important;
	overflow: hidden !important;
	background: linear-gradient(
		135deg,
		#21006f 0%,
		#16005b 50%,
		#0d003b 100%
	) !important;
	color: #ffffff !important;
}

.ukhi-company-hero .ukhi-hero-inner {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) 430px !important;
	align-items: center !important;
	gap: 48px !important;
	width: 100% !important;
	max-width: 1280px !important;
	margin: 0 auto !important;
}

.ukhi-company-hero .ukhi-hero-main {
	display: flex !important;
	align-items: center !important;
	gap: 30px !important;
	min-width: 0 !important;
}

.ukhi-company-hero .ukhi-company-content {
	flex: 1 1 auto !important;
	min-width: 0 !important;
}

.ukhi-company-hero .ukhi-company-logo-wrap {
	display: flex !important;
	flex: 0 0 160px !important;
	align-items: center !important;
	justify-content: center !important;
	width: 160px !important;
	height: 160px !important;
	min-width: 160px !important;
	min-height: 160px !important;
	max-width: 160px !important;
	max-height: 160px !important;
	padding: 14px !important;
	overflow: hidden !important;
	border-radius: 18px !important;
	background: #ffffff !important;
}

.ukhi-company-hero .ukhi-company-logo-wrap img,
.ukhi-company-hero img.ukhi-company-logo {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	min-width: 0 !important;
	min-height: 0 !important;
	max-width: 100% !important;
	max-height: 100% !important;
	object-fit: contain !important;
}

.ukhi-company-hero .ukhi-company-title {
	margin: 0 0 16px !important;
	color: #ffffff !important;
	font-size: clamp(38px, 4.5vw, 64px) !important;
	line-height: 1.05 !important;
}

.ukhi-company-hero .ukhi-company-description,
.ukhi-company-hero .ukhi-company-description p {
	color: rgba(255, 255, 255, 0.78) !important;
}

.ukhi-company-hero .ukhi-company-info-card {
	display: block !important;
	width: 100% !important;
	padding: 27px !important;
	border-radius: 18px !important;
	background: #ffffff !important;
	color: #1d1638 !important;
}

.ukhi-company-hero .ukhi-info-list {
	display: grid !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 5px 0 !important;
}

.ukhi-company-hero .ukhi-info-item {
	display: flex !important;
	align-items: flex-start !important;
	gap: 14px !important;
	width: 100% !important;
	padding: 13px 0 !important;
}

.ukhi-company-hero .ukhi-info-item-content {
	display: block !important;
	flex: 1 1 auto !important;
	min-width: 0 !important;
}

/* Stop all giant SVG icons */
.ukhi-company-hero svg {
	display: block !important;
	flex-grow: 0 !important;
	flex-shrink: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	transform: none !important;
}

.ukhi-company-hero .ukhi-hero-meta-icon {
	display: flex !important;
	flex: 0 0 44px !important;
	align-items: center !important;
	justify-content: center !important;
	width: 44px !important;
	height: 44px !important;
	min-width: 44px !important;
	min-height: 44px !important;
	max-width: 44px !important;
	max-height: 44px !important;
	overflow: hidden !important;
}

.ukhi-company-hero .ukhi-hero-meta-icon svg {
	width: 21px !important;
	height: 21px !important;
	min-width: 21px !important;
	min-height: 21px !important;
	max-width: 21px !important;
	max-height: 21px !important;
}

.ukhi-company-hero .ukhi-info-icon {
	display: flex !important;
	flex: 0 0 46px !important;
	align-items: center !important;
	justify-content: center !important;
	width: 46px !important;
	height: 46px !important;
	min-width: 46px !important;
	min-height: 46px !important;
	max-width: 46px !important;
	max-height: 46px !important;
	overflow: hidden !important;
}

.ukhi-company-hero .ukhi-info-icon svg {
	width: 23px !important;
	height: 23px !important;
	min-width: 23px !important;
	min-height: 23px !important;
	max-width: 23px !important;
	max-height: 23px !important;
}

.ukhi-company-hero .ukhi-info-item-icon {
	display: flex !important;
	flex: 0 0 40px !important;
	align-items: center !important;
	justify-content: center !important;
	width: 40px !important;
	height: 40px !important;
	min-width: 40px !important;
	min-height: 40px !important;
	max-width: 40px !important;
	max-height: 40px !important;
	overflow: hidden !important;
}

.ukhi-company-hero .ukhi-info-item-icon svg {
	width: 20px !important;
	height: 20px !important;
	min-width: 20px !important;
	min-height: 20px !important;
	max-width: 20px !important;
	max-height: 20px !important;
}

.ukhi-company-hero .ukhi-claim-listing-btn svg,
.ukhi-company-hero .ukhi-hero-actions .btn svg {
	width: 19px !important;
	height: 19px !important;
	min-width: 19px !important;
	min-height: 19px !important;
	max-width: 19px !important;
	max-height: 19px !important;
}

@media (max-width: 900px) {
	.ukhi-company-hero .ukhi-hero-inner {
		display: block !important;
	}

	.ukhi-company-hero .ukhi-hero-main {
		display: block !important;
		text-align: center !important;
	}

	.ukhi-company-hero .ukhi-company-logo-wrap {
		margin: 0 auto 24px !important;
	}

	.ukhi-company-hero .ukhi-company-info-card {
		margin-top: 32px !important;
	}
}

@media (max-width: 767px) {
	.ukhi-company-hero {
		padding: 38px 18px !important;
	}

	.ukhi-company-hero .ukhi-company-logo-wrap {
		width: 130px !important;
		height: 130px !important;
		min-width: 130px !important;
		min-height: 130px !important;
		max-width: 130px !important;
		max-height: 130px !important;
	}

	.ukhi-company-hero .ukhi-company-title {
		font-size: 37px !important;
	}

	.ukhi-company-hero .ukhi-hero-actions {
		display: grid !important;
		grid-template-columns: 1fr !important;
	}

	.ukhi-company-hero .ukhi-hero-actions .btn {
		width: 100% !important;
	}
}

/* =========================================================
   PREMIUM UKHI BRAND REFINEMENT
   Logo palette: electric green + deep royal purple
   This block intentionally stays last to preserve every
   existing class while improving contrast and polish.
========================================================= */

.ukhi-company-hero {
	isolation: isolate;
	background:
		radial-gradient(circle at 82% 12%, rgba(44, 242, 12, 0.22), transparent 28%),
		radial-gradient(circle at 8% 92%, rgba(44, 242, 12, 0.10), transparent 32%),
		linear-gradient(135deg, var(--ukhi-purple-dark) 0%, var(--ukhi-purple) 54%, var(--ukhi-purple-light) 100%) !important;
	box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

.ukhi-company-hero::before {
	opacity: 0.75;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
	background-size: 52px 52px;
}

.ukhi-company-hero::after {
	content: "";
	position: absolute;
	z-index: 0;
	inset: auto -120px -180px auto;
	width: 420px;
	height: 420px;
	border: 1px solid rgba(44, 242, 12, 0.18);
	border-radius: 50%;
	box-shadow:
		0 0 0 55px rgba(44, 242, 12, 0.035),
		0 0 0 110px rgba(255, 255, 255, 0.018);
	pointer-events: none;
}

.ukhi-company-logo-wrap,
.ukhi-company-hero .ukhi-company-logo-wrap {
	border: 1px solid rgba(44, 242, 12, 0.38) !important;
	background: linear-gradient(145deg, #ffffff 0%, #f9f7ff 100%) !important;
	box-shadow:
		0 26px 60px rgba(8, 0, 42, 0.34),
		0 0 0 6px rgba(255, 255, 255, 0.055) !important;
}

.ukhi-company-directory-label {
	color: var(--ukhi-green) !important;
	text-shadow: 0 0 22px rgba(44, 242, 12, 0.18);
}

.ukhi-company-hero .ukhi-company-title,
.ukhi-company-title {
	text-wrap: balance;
	text-shadow: 0 10px 35px rgba(7, 0, 35, 0.28);
}

.ukhi-company-description {
	color: rgba(255, 255, 255, 0.84) !important;
}

.ukhi-company-hero .btn {
	border-radius: 10px;
	letter-spacing: -0.01em;
}

.ukhi-company-hero .btn-lime {
	border-color: var(--ukhi-green) !important;
	background: linear-gradient(135deg, #35ff13 0%, var(--ukhi-green) 55%, #20d907 100%) !important;
	color: var(--ukhi-purple-dark) !important;
	box-shadow:
		0 14px 34px rgba(44, 242, 12, 0.25),
		inset 0 1px 0 rgba(255, 255, 255, 0.42) !important;
}

.ukhi-company-hero .btn-lime:hover {
	border-color: #46ff25 !important;
	background: linear-gradient(135deg, #46ff25 0%, #2cf20c 62%, #1bc804 100%) !important;
	box-shadow: 0 18px 42px rgba(44, 242, 12, 0.32) !important;
}

.ukhi-company-hero .btn-glass {
	border-color: rgba(255, 255, 255, 0.25);
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.ukhi-company-hero .btn-glass:hover {
	border-color: rgba(44, 242, 12, 0.48);
	background: rgba(255, 255, 255, 0.16);
}

.ukhi-company-info-card,
.ukhi-company-hero .ukhi-company-info-card {
	border-color: rgba(255, 255, 255, 0.72) !important;
	background: linear-gradient(155deg, rgba(255, 255, 255, 0.985), rgba(248, 246, 255, 0.965)) !important;
	box-shadow: var(--ukhi-shadow-lg) !important;
}

.ukhi-info-icon,
.ukhi-info-item-icon {
	border-color: rgba(22, 0, 91, 0.10) !important;
	background: linear-gradient(145deg, var(--ukhi-green-soft), #f7f4ff) !important;
	color: var(--ukhi-purple) !important;
}

.ukhi-info-link:hover {
	color: var(--ukhi-purple-light) !important;
}

.ukhi-hero-meta-icon {
	border-color: rgba(44, 242, 12, 0.34) !important;
	background: rgba(44, 242, 12, 0.11) !important;
	color: var(--ukhi-green) !important;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.ukhi-claim-box {
	border-color: rgba(22, 0, 91, 0.10);
	background: linear-gradient(145deg, #fbfaff, var(--ukhi-green-soft));
}

.ukhi-claim-listing-btn,
.ukhi-form-submit {
	border-color: var(--ukhi-purple) !important;
	background: linear-gradient(135deg, var(--ukhi-purple-light), var(--ukhi-purple-dark)) !important;
	box-shadow: 0 12px 28px rgba(22, 0, 91, 0.20);
}

.ukhi-claim-listing-btn:hover,
.ukhi-form-submit:hover:not(:disabled) {
	background: linear-gradient(135deg, #32108a, var(--ukhi-purple)) !important;
	box-shadow: 0 16px 34px rgba(22, 0, 91, 0.26);
}

.ukhi-modal-overlay {
	background: rgba(10, 0, 45, 0.78);
}

.ukhi-modal-dialog {
	border-color: rgba(255, 255, 255, 0.52);
	background: linear-gradient(155deg, #ffffff 0%, #faf8ff 100%);
	box-shadow: 0 38px 110px rgba(9, 0, 43, 0.46);
}

.ukhi-modal-close:hover,
.ukhi-modal-header-icon {
	background: var(--ukhi-purple) !important;
}

.ukhi-modal-header-icon {
	color: var(--ukhi-green) !important;
	box-shadow: 0 12px 26px rgba(22, 0, 91, 0.20);
}

.ukhi-modal-company {
	border-color: rgba(22, 0, 91, 0.10);
	background: linear-gradient(135deg, var(--ukhi-purple-soft), var(--ukhi-green-soft));
}

.ukhi-form-field input,
.ukhi-form-field textarea {
	border-color: #d8d3e4;
	background: #ffffff;
}

.ukhi-form-field input:hover,
.ukhi-form-field textarea:hover {
	border-color: #b8afd0;
}

.ukhi-form-field input:focus,
.ukhi-form-field textarea:focus {
	border-color: var(--ukhi-green);
	box-shadow: 0 0 0 4px rgba(44, 242, 12, 0.16);
}

.ukhi-form-submit:focus-visible,
.ukhi-claim-listing-btn:focus-visible,
.ukhi-company-hero .btn:focus-visible,
.ukhi-modal-close:focus-visible,
.ukhi-form-field input:focus-visible,
.ukhi-form-field textarea:focus-visible {
	outline: 3px solid rgba(44, 242, 12, 0.46);
	outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
	.ukhi-company-hero .btn,
	.ukhi-claim-listing-btn,
	.ukhi-form-submit,
	.ukhi-modal-dialog,
	.ukhi-modal-close {
		transition: none !important;
	}
}


/* =========================================================
   FINAL UKHI LOGO-COLOUR OVERRIDE — KEEP AT ABSOLUTE END
   Removes the previous dark-green visual and forces the
   official electric-green + royal-purple brand combination.
========================================================= */

:root {
	--ukhi-green: #2cf20c !important;
	--ukhi-green-dark: #20d907 !important;
	--ukhi-purple: #17005b !important;
	--ukhi-purple-dark: #0d0038 !important;
	--ukhi-purple-mid: #240079 !important;
	--ukhi-purple-light: #35109a !important;
	--ukhi-navy: #17005b !important;
	--ukhi-navy-dark: #0d0038 !important;
	--ukhi-dl-purple: #17005b !important;
	--ukhi-dl-purple-dark: #0d0038 !important;
	--ukhi-dl-purple-light: #35109a !important;
}

.ukhi-company-hero {
	background-color: #17005b !important;
	background-image:
		radial-gradient(circle at 88% 10%, rgba(44, 242, 12, 0.30) 0, rgba(44, 242, 12, 0.13) 18%, transparent 38%),
		radial-gradient(circle at 7% 93%, rgba(44, 242, 12, 0.16) 0, transparent 35%),
		linear-gradient(128deg, #0d0038 0%, #17005b 43%, #240079 72%, #35109a 100%) !important;
	color: #ffffff !important;
}

.ukhi-company-hero::before {
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px) !important;
	opacity: 0.72 !important;
}

.ukhi-company-hero::after {
	border-color: rgba(44, 242, 12, 0.28) !important;
	box-shadow:
		0 0 0 55px rgba(44, 242, 12, 0.055),
		0 0 0 110px rgba(255, 255, 255, 0.022) !important;
}

.ukhi-company-directory-label,
.ukhi-company-directory-label::before {
	color: #2cf20c !important;
}

.ukhi-company-hero .ukhi-company-title,
.ukhi-company-title,
.ukhi-company-hero .ukhi-hero-meta-item strong {
	color: #ffffff !important;
}

.ukhi-company-description,
.ukhi-company-description p {
	color: rgba(255, 255, 255, 0.84) !important;
}

.ukhi-company-logo-wrap,
.ukhi-company-hero .ukhi-company-logo-wrap {
	border-color: rgba(44, 242, 12, 0.55) !important;
	background: #ffffff !important;
	box-shadow:
		0 28px 65px rgba(8, 0, 42, 0.42),
		0 0 0 6px rgba(44, 242, 12, 0.08) !important;
}

.ukhi-company-hero .btn-lime {
	border-color: #2cf20c !important;
	background: linear-gradient(135deg, #45ff26 0%, #2cf20c 55%, #20d907 100%) !important;
	color: #17005b !important;
	box-shadow: 0 16px 38px rgba(44, 242, 12, 0.30) !important;
}

.ukhi-company-hero .btn-lime:hover {
	border-color: #59ff3d !important;
	background: linear-gradient(135deg, #59ff3d 0%, #2cf20c 60%, #19c900 100%) !important;
	color: #0d0038 !important;
}

.ukhi-hero-meta-icon {
	border-color: rgba(44, 242, 12, 0.42) !important;
	background: rgba(44, 242, 12, 0.14) !important;
	color: #2cf20c !important;
}

.ukhi-company-info-card,
.ukhi-company-hero .ukhi-company-info-card {
	border-color: rgba(255, 255, 255, 0.80) !important;
	background: linear-gradient(155deg, #ffffff 0%, #f6f2ff 100%) !important;
	box-shadow: 0 34px 90px rgba(9, 0, 45, 0.36) !important;
}

.ukhi-info-icon,
.ukhi-info-item-icon,
.ukhi-company-info-card .ukhi-info-icon,
.ukhi-company-info-card .ukhi-info-item-icon {
	border-color: rgba(23, 0, 91, 0.14) !important;
	background: linear-gradient(145deg, rgba(44, 242, 12, 0.16), rgba(53, 16, 154, 0.08)) !important;
	color: #35109a !important;
}

.ukhi-claim-box {
	border-color: rgba(23, 0, 91, 0.13) !important;
	background: linear-gradient(135deg, #f7f3ff 0%, #f0ffe9 100%) !important;
}

.ukhi-claim-listing-btn,
.ukhi-form-submit {
	border-color: #17005b !important;
	background: linear-gradient(135deg, #35109a 0%, #17005b 58%, #0d0038 100%) !important;
	color: #ffffff !important;
	box-shadow: 0 14px 32px rgba(23, 0, 91, 0.25) !important;
}

.ukhi-claim-listing-btn:hover,
.ukhi-form-submit:hover:not(:disabled) {
	background: linear-gradient(135deg, #4420ad 0%, #240079 55%, #17005b 100%) !important;
}

.ukhi-modal-overlay {
	background: rgba(9, 0, 42, 0.82) !important;
}

.ukhi-modal-header-icon,
.ukhi-modal-close:hover {
	background: #17005b !important;
	color: #2cf20c !important;
}

.ukhi-form-field input:focus,
.ukhi-form-field textarea:focus {
	border-color: #2cf20c !important;
	box-shadow: 0 0 0 4px rgba(44, 242, 12, 0.17) !important;
}

/* =========================================================
   UKHI BRAND BUILD 2.0.0 — FINAL CACHE-SAFE OVERRIDE
   Official logo palette: electric green + royal purple
========================================================= */
.ukhi-company-hero {
	background-color: #17005b !important;
	background-image:
		radial-gradient(circle at 11% 17%, rgba(44, 242, 12, 0.18) 0, transparent 27%),
		radial-gradient(circle at 89% 82%, rgba(44, 242, 12, 0.10) 0, transparent 28%),
		linear-gradient(128deg, #0d0038 0%, #17005b 43%, #240079 72%, #35109a 100%) !important;
}
