/* ==========================================================================
   Contact — Premium aviation operations contact center
   Scoped: .iuk-contact
   ========================================================================== */

.iuk-contact {
	--av-bg: #020617;
	--av-surface: #0b1120;
	--av-line: rgba(255, 255, 255, 0.07);
	--av-text: #f8fafc;
	--av-muted: rgba(255, 255, 255, 0.52);
	--av-blue: #2563eb;
	--av-cyan: #06b6d4;
	--av-green: #10b981;
	--av-wa: #25d366;
	--av-ease: cubic-bezier(0.16, 1, 0.3, 1);
	--av-header: 72px;
	--ct-pad: clamp(3rem, 5vw, 4.5rem);
	background: var(--av-bg);
	color: var(--av-text);
}

body.iuk-contact {
	background: var(--av-bg);
}

.iuk-contact .iuk-main {
	padding-top: 0;
	background: var(--av-bg);
}

.iuk-contact .iuk-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: rgba(2, 6, 23, 0.92);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom: 1px solid var(--av-line);
}

.iuk-contact .iuk-nav__list a {
	color: rgba(255, 255, 255, 0.78);
}

.iuk-contact .iuk-nav__list a:hover,
.iuk-contact .iuk-nav__list .current-menu-item a,
.iuk-contact .iuk-nav__list .current_page_item a {
	color: #fff;
}

.iuk-contact .iuk-header .brand-main {
	color: #fff;
}

.iuk-contact .iuk-footer {
	margin-top: 0;
}

.iuk-contact .av-reveal {
	opacity: 0;
	transform: translate3d(0, 20px, 0);
	transition: opacity 0.75s var(--av-ease), transform 0.75s var(--av-ease);
	transition-delay: var(--delay, 0s);
}

.iuk-contact .av-reveal.is-in {
	opacity: 1;
	transform: none;
}

.iuk-contact .av-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.75rem 1.35rem;
	font-size: 0.875rem;
	font-weight: 600;
	border-radius: 999px;
	border: 1px solid transparent;
	text-decoration: none;
	transition: transform 0.35s var(--av-ease), border-color 0.35s, background 0.35s, box-shadow 0.35s;
	cursor: pointer;
}

.iuk-contact .av-btn svg {
	width: 1.125rem;
	height: 1.125rem;
	flex-shrink: 0;
}

.iuk-contact .av-btn--wa {
	background: var(--av-wa);
	color: #fff;
	box-shadow: 0 4px 24px rgba(37, 211, 102, 0.28);
}

.iuk-contact .av-btn--wa:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 32px rgba(37, 211, 102, 0.38);
	color: #fff;
}

.iuk-contact .av-btn--ghost {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.28);
	color: #fff;
}

.iuk-contact .av-btn--ghost:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.4);
	color: #fff;
}

.iuk-contact .av-btn--sm {
	padding: 0.625rem 1.125rem;
	font-size: 0.8125rem;
}

.iuk-contact .av-btn--xl {
	padding: 0.95rem 1.75rem;
	font-size: 0.9375rem;
	font-weight: 700;
}

/* Hero */
.iuk-contact .ct-hero.av-hero {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: min(52vh, 480px);
	padding: calc(var(--av-header) + 1.75rem) 0 2.25rem;
	overflow: hidden;
	background: var(--av-bg);
}

.iuk-contact .ct-hero .av-hero__inner {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	position: relative;
	z-index: 5;
}

.iuk-contact .av-hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.iuk-contact .av-hero__photo {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.iuk-contact .ct-hero__photo {
	object-position: center 40%;
	filter: contrast(1.06) saturate(0.92) brightness(0.76);
}

.iuk-contact .ct-hero__overlay {
	background: linear-gradient(180deg, rgba(2, 6, 23, 0.4) 0%, rgba(2, 6, 23, 0.78) 55%, rgba(2, 6, 23, 0.96) 100%);
}

.iuk-contact .av-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.iuk-contact .av-hero__vignette {
	position: absolute;
	inset: 0;
	z-index: 2;
	background: radial-gradient(ellipse 80% 70% at 50% 40%, transparent 25%, rgba(2, 6, 23, 0.55) 100%);
	pointer-events: none;
}

.iuk-contact .av-hero__eyebrow {
	margin: 0 0 0.875rem;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(126, 231, 255, 0.85);
}

.iuk-contact .ct-hero__title {
	margin: 0 0 1rem;
	font-size: clamp(1.875rem, 4.5vw, 2.75rem);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -0.02em;
	color: #fff;
}

.iuk-contact .ct-hero__lead {
	max-width: 42rem;
	margin: 0;
	font-size: clamp(0.9375rem, 1.8vw, 1.0625rem);
	line-height: 1.65;
	color: var(--av-muted);
}

.iuk-contact .ct-hero .av-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.5rem;
}

.iuk-contact .ct-hero__stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.75rem;
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.iuk-contact .ct-hero__stat {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	padding: 0.875rem 1rem;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.iuk-contact .ct-hero__stat-value {
	font-size: clamp(1.125rem, 2.5vw, 1.5rem);
	font-weight: 800;
	line-height: 1.1;
	color: #fff;
	letter-spacing: -0.02em;
}

.iuk-contact .ct-hero__stat-label {
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--av-muted);
}

/* Section typography */
.iuk-contact .ct-section__eyebrow {
	margin: 0 0 0.625rem;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(126, 231, 255, 0.85);
}

.iuk-contact .ct-section__title {
	margin: 0 0 0.75rem;
	font-size: clamp(1.375rem, 2.8vw, 1.875rem);
	font-weight: 800;
	line-height: 1.15;
	color: #fff;
}

.iuk-contact .ct-section__desc {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.65;
	color: var(--av-muted);
}

/* Method cards */
.iuk-contact .ct-methods {
	padding: clamp(2rem, 4vw, 2.75rem) 0 clamp(1.5rem, 3vw, 2rem);
	margin-top: -2rem;
	position: relative;
	z-index: 2;
}

.iuk-contact .ct-methods__head {
	max-width: 42rem;
	margin-bottom: 1.75rem;
}

.iuk-contact .ct-methods__grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: 1fr;
}

@media (min-width: 640px) {
	.iuk-contact .ct-methods__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.iuk-contact .ct-methods__grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.iuk-contact .ct-method {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	padding: 1.35rem 1.25rem;
	text-decoration: none;
	color: inherit;
	transition: transform 0.35s var(--av-ease), border-color 0.35s, box-shadow 0.35s;
}

.iuk-contact .ct-method:hover {
	transform: translateY(-3px);
	border-color: rgba(6, 182, 212, 0.38);
	box-shadow: 0 24px 64px rgba(0, 0, 0, 0.38), 0 0 24px rgba(6, 182, 212, 0.1);
	color: inherit;
}

.iuk-contact .ct-method__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 10px;
	background: rgba(6, 182, 212, 0.12);
	border: 1px solid rgba(6, 182, 212, 0.22);
	color: var(--av-cyan);
}

.iuk-contact .ct-method__icon svg {
	width: 1.25rem;
	height: 1.25rem;
}

.iuk-contact .ct-method__eyebrow {
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(126, 231, 255, 0.75);
}

.iuk-contact .ct-method__value {
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 1.35;
	color: #fff;
	word-break: break-word;
}

.iuk-contact .ct-method__desc {
	font-size: 0.8125rem;
	line-height: 1.5;
	color: var(--av-muted);
	flex: 1;
}

.iuk-contact .ct-method__action {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	margin-top: 0.5rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(126, 231, 255, 0.85);
	transition: gap 0.3s var(--av-ease), color 0.3s;
}

.iuk-contact .ct-method__action svg {
	width: 0.875rem;
	height: 0.875rem;
}

.iuk-contact .ct-method:hover .ct-method__action {
	gap: 0.55rem;
	color: #fff;
}

.iuk-contact .ct-method--wa .ct-method__icon {
	background: rgba(37, 211, 102, 0.12);
	border-color: rgba(37, 211, 102, 0.28);
	color: var(--av-wa);
}

.iuk-contact .ct-method--wa:hover {
	border-color: rgba(37, 211, 102, 0.42);
	box-shadow: 0 24px 64px rgba(0, 0, 0, 0.38), 0 0 24px rgba(37, 211, 102, 0.12);
}

.iuk-contact .ct-method--blue .ct-method__icon {
	background: rgba(37, 99, 235, 0.12);
	border-color: rgba(37, 99, 235, 0.28);
	color: var(--av-blue);
}

/* Quick channels panel */
.iuk-contact .ct-channels {
	padding: 0 0 var(--ct-pad);
	position: relative;
}

.iuk-contact .ct-channels::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
	pointer-events: none;
}

.iuk-contact .ct-channels__grid {
	display: grid;
	gap: 1.25rem;
	align-items: stretch;
	position: relative;
	z-index: 1;
}

@media (min-width: 960px) {
	.iuk-contact .ct-channels__grid {
		grid-template-columns: 1.15fr 0.85fr;
		gap: 1.5rem;
	}
}

.iuk-contact .ct-channels__primary {
	padding: clamp(1.75rem, 3.5vw, 2.5rem);
}

.iuk-contact .ct-channels__title {
	margin: 0 0 0.875rem;
	font-size: clamp(1.375rem, 2.8vw, 1.75rem);
	font-weight: 800;
	line-height: 1.15;
	color: #fff;
}

.iuk-contact .ct-channels__desc {
	margin: 0 0 1.5rem;
	font-size: 0.9375rem;
	line-height: 1.65;
	color: var(--av-muted);
	max-width: 36rem;
}

.iuk-contact .ct-channels__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.iuk-contact .ct-channels__aside {
	padding: clamp(1.25rem, 2.5vw, 1.75rem);
}

.iuk-contact .ct-channels__facts {
	display: grid;
	gap: 1.125rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.iuk-contact .ct-channels__facts li {
	display: flex;
	align-items: flex-start;
	gap: 0.875rem;
}

.iuk-contact .ct-channels__fact-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 10px;
	background: rgba(6, 182, 212, 0.1);
	border: 1px solid rgba(6, 182, 212, 0.2);
	color: var(--av-cyan);
}

.iuk-contact .ct-channels__fact-icon svg {
	width: 1.125rem;
	height: 1.125rem;
}

.iuk-contact .ct-channels__facts strong {
	display: block;
	margin-bottom: 0.2rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
}

.iuk-contact .ct-channels__facts span,
.iuk-contact .ct-channels__facts a {
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1.4;
	color: #fff;
	text-decoration: none;
}

.iuk-contact .ct-channels__facts a:hover {
	color: var(--av-cyan);
}

/* Location */
.iuk-contact .ct-location {
	padding: 0 0 var(--ct-pad);
}

.iuk-contact .ct-location__grid {
	display: grid;
	gap: 1.5rem;
	align-items: stretch;
}

@media (min-width: 960px) {
	.iuk-contact .ct-location__grid {
		grid-template-columns: 1fr 1.15fr;
		gap: 2rem;
	}
}

.iuk-contact .ct-location__address {
	margin: 1.25rem 0 1.5rem;
	font-style: normal;
	font-size: 0.9375rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.78);
}

.iuk-contact .ct-location__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.625rem;
}

.iuk-contact .ct-location__map {
	overflow: hidden;
	padding: 0;
	min-height: 280px;
}

.iuk-contact .ct-location__iframe {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 280px;
	border: 0;
	filter: grayscale(0.35) contrast(1.05) brightness(0.82);
}

.iuk-contact .ct-location__map-placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	min-height: 280px;
	padding: 2rem;
	text-align: center;
	color: var(--av-muted);
}

.iuk-contact .ct-location__map-icon {
	display: flex;
	color: var(--av-cyan);
	opacity: 0.7;
}

.iuk-contact .ct-location__map-icon svg {
	width: 2.5rem;
	height: 2.5rem;
}

/* Trust row */
.iuk-contact .ct-trust {
	padding: 0 0 clamp(2.5rem, 5vw, 3.5rem);
}

.iuk-contact .ct-trust__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem 1.5rem;
	margin: 0;
	padding: 1rem 1.25rem;
	list-style: none;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.iuk-contact .ct-trust__list li {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.8125rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.72);
}

.iuk-contact .ct-trust__icon {
	display: flex;
	color: var(--av-cyan);
}

.iuk-contact .ct-trust__icon svg {
	width: 1rem;
	height: 1rem;
}

@media (max-width: 767px) {
	.iuk-contact .ct-hero.av-hero {
		min-height: auto;
		padding: calc(var(--av-header) + 1.25rem) 0 1.75rem;
	}

	.iuk-contact .ct-hero .av-hero__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.iuk-contact .ct-hero .av-hero__actions .av-btn {
		justify-content: center;
	}

	.iuk-contact .ct-methods {
		margin-top: -1.25rem;
	}

	.iuk-contact .ct-hero__stats {
		grid-template-columns: 1fr;
	}

	.iuk-contact .ct-channels__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.iuk-contact .ct-channels__actions .av-btn {
		justify-content: center;
	}

	.iuk-contact .ct-location__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.iuk-contact .ct-location__actions .av-btn {
		justify-content: center;
	}
}

@media (prefers-reduced-motion: reduce) {
	.iuk-contact .av-reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
}
