/**
 * Contact (Premium) — ONLY `#airband-acp-shell` (page template body).
 * Does not change global header, footer, or theme layout.
 */

#airband-acp-shell {
	--acp-bg-deep: #0b1220;
	--acp-bg-mid: #111827;
	--acp-surface: rgba(255, 255, 255, 0.06);
	--acp-surface-strong: rgba(255, 255, 255, 0.1);
	--acp-border: rgba(255, 255, 255, 0.12);
	--acp-text: #f1f5f9;
	--acp-text-muted: #94a3b8;
	--acp-accent: var(--th-color-accent-secondary, #57d6e2);
	--acp-accent-hover: var(--th-color-accent-tertiary, #6ec1e4);
	--acp-accent-dim: rgba(var(--th-rgb-turquoise), 0.16);
	--acp-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
	--acp-radius: 16px;
	--acp-blur: 20px;
	/*
	 * Push the dark shell *below* the overlay header. Padding inside .acp-hero cannot do this:
	 * .acp-hero__bg uses inset:0 and backgrounds paint the padding box — so extra padding only
	 * moves text while the navy gradient still sits under the transparent header.
	 * Margin sits outside the shell; the gap shows #wrapper/body (light) so nav/logo contrast matches other pages.
	 */
	--acp-site-header-offset: clamp(5rem, 12vw, 9rem);
	margin-top: var(--acp-site-header-offset);
	color: var(--acp-text);
	background: var(--acp-bg-deep);
}

#airband-acp-shell :where(h1, h2, h3, h4, h5, h6, p, li, span, label, strong) {
	color: inherit;
}

#airband-acp-shell a:not(.acp-btn) {
	color: var(--acp-accent);
}

/* ----- Hero ----- */
#airband-acp-shell .acp-hero {
	position: relative;
	padding: clamp(2.25rem, 5vw, 3.5rem) 0 clamp(2rem, 4vw, 3.5rem);
	text-align: center;
}

#airband-acp-shell .acp-hero__bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 80% 60% at 50% -20%, rgba(var(--th-rgb-turquoise), 0.22), transparent 55%),
		radial-gradient(ellipse 60% 40% at 100% 50%, rgba(56, 189, 248, 0.12), transparent 50%),
		radial-gradient(ellipse 50% 50% at 0% 80%, rgba(var(--th-rgb-turquoise), 0.08), transparent 45%),
		linear-gradient(180deg, var(--acp-bg-mid) 0%, var(--acp-bg-deep) 100%);
	pointer-events: none;
}

#airband-acp-shell .acp-hero__inner {
	position: relative;
	z-index: 1;
	max-width: 42rem;
	margin: 0 auto;
}

#airband-acp-shell .acp-hero__kicker {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--acp-accent);
	margin: 0 0 1rem;
}

#airband-acp-shell .acp-hero__title {
	font-weight: 800;
	font-size: clamp(2rem, 5vw, 3rem);
	letter-spacing: -0.035em;
	line-height: 1.1;
	margin: 0 0 1rem;
	color: #fff;
}

#airband-acp-shell .acp-hero__lead {
	font-size: clamp(1.05rem, 2vw, 1.2rem);
	line-height: 1.55;
	color: var(--acp-text-muted);
	margin: 0;
}

/* ----- Cards + form ----- */
#airband-acp-shell .acp-main-section {
	padding: clamp(2rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 5rem);
	position: relative;
}

#airband-acp-shell .acp-main-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: min(100%, 72rem);
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--acp-border), transparent);
}

#airband-acp-shell .acp-cards-strip {
	margin-bottom: clamp(2rem, 5vw, 3rem);
}

#airband-acp-shell .acp-cards--row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

@media (min-width: 768px) {
	#airband-acp-shell .acp-cards--row {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 992px) {
	#airband-acp-shell .acp-cards--row {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 1.25rem;
	}
}

#airband-acp-shell .acp-card {
	padding: 1.35rem 1.5rem;
	border-radius: var(--acp-radius);
	background: var(--acp-surface);
	backdrop-filter: blur(var(--acp-blur));
	-webkit-backdrop-filter: blur(var(--acp-blur));
	border: 1px solid var(--acp-border);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
	transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

@media (hover: hover) and (pointer: fine) {
	#airband-acp-shell .acp-card:hover {
		transform: translateY(-4px);
		border-color: rgba(var(--th-rgb-turquoise), 0.35);
		box-shadow: var(--acp-shadow);
		background: var(--acp-surface-strong);
	}
}

#airband-acp-shell .acp-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: 12px;
	background: var(--acp-accent-dim);
	color: var(--acp-accent);
	margin-bottom: 1rem;
}

#airband-acp-shell .acp-card__title {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--acp-text-muted);
	margin: 0 0 0.5rem;
}

#airband-acp-shell .acp-card__text {
	font-size: 0.95rem;
	line-height: 1.45;
	margin: 0;
	color: var(--acp-text);
	word-break: break-word;
}

@media (min-width: 992px) {
	#airband-acp-shell .acp-card__text {
		font-size: 1rem;
	}
}

#airband-acp-shell .acp-card__link {
	color: var(--acp-accent);
	text-decoration: none;
	font-weight: 600;
	transition: color 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
	#airband-acp-shell .acp-card__link:hover {
		color: var(--acp-accent-hover);
	}
}

/* Form panel */
#airband-acp-shell .acp-form-panel {
	border-radius: calc(var(--acp-radius) + 4px);
	padding: clamp(1.75rem, 4vw, 2.5rem);
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.03) 100%);
	backdrop-filter: blur(var(--acp-blur));
	-webkit-backdrop-filter: blur(var(--acp-blur));
	border: 1px solid var(--acp-border);
	box-shadow: var(--acp-shadow);
}

#airband-acp-shell .acp-form-panel__head {
	margin-bottom: 1.75rem;
	padding-bottom: 1.25rem;
	border-bottom: 1px solid var(--acp-border);
}

#airband-acp-shell .acp-form-panel__title {
	font-weight: 800;
	font-size: clamp(1.35rem, 3vw, 1.65rem);
	letter-spacing: -0.02em;
	margin: 0 0 0.4rem;
	color: #fff;
}

#airband-acp-shell .acp-form-panel__sub {
	margin: 0;
	font-size: 0.95rem;
	color: var(--acp-text-muted);
}

#airband-acp-shell .acp-form-panel__placeholder {
	margin: 0;
	padding: 1rem;
	border-radius: 8px;
	background: rgba(239, 68, 68, 0.12);
	border: 1px solid rgba(239, 68, 68, 0.35);
	color: #fecaca;
	font-size: 0.95rem;
}

/* CF7 (inside panel only) */
#airband-acp-shell .acp-form-panel__body .wpcf7 {
	color: var(--acp-text);
}

#airband-acp-shell .acp-form-panel__body .wpcf7 :where(p, span, label, strong, em) {
	color: inherit;
}

#airband-acp-shell .acp-form-panel__body .wpcf7-form {
	margin: 0;
}

#airband-acp-shell .acp-form-panel__body .wpcf7-form > p {
	margin: 0 0 1.15rem;
}

#airband-acp-shell .acp-form-panel__body label {
	display: block;
	font-weight: 600;
	font-size: 0.82rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(241, 245, 249, 0.9);
	margin-bottom: 0.45rem;
}

#airband-acp-shell .acp-form-panel__body label .wpcf7-form-control-wrap {
	display: block;
	text-transform: none;
	font-weight: 400;
}

#airband-acp-shell .acp-form-panel__body label br {
	display: none;
}

#airband-acp-shell .acp-form-panel__body input.wpcf7-form-control,
#airband-acp-shell .acp-form-panel__body textarea.wpcf7-form-control,
#airband-acp-shell .acp-form-panel__body select.wpcf7-form-control,
#airband-acp-shell .acp-form-panel__body input[type="text"],
#airband-acp-shell .acp-form-panel__body input[type="email"],
#airband-acp-shell .acp-form-panel__body input[type="tel"],
#airband-acp-shell .acp-form-panel__body textarea {
	width: 100%;
	box-sizing: border-box;
	padding: 0.85rem 1rem;
	font-size: 1rem;
	color: var(--acp-text);
	background: rgba(15, 23, 42, 0.65);
	border: 1px solid var(--acp-border);
	border-radius: 10px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

#airband-acp-shell .acp-form-panel__body input::placeholder,
#airband-acp-shell .acp-form-panel__body textarea::placeholder {
	color: rgba(203, 213, 225, 0.72);
}

#airband-acp-shell .acp-form-panel__body textarea {
	min-height: 9rem;
	resize: vertical;
}

#airband-acp-shell .acp-form-panel__body input:focus,
#airband-acp-shell .acp-form-panel__body textarea:focus,
#airband-acp-shell .acp-form-panel__body select:focus {
	outline: none;
	border-color: rgba(var(--th-rgb-turquoise), 0.55);
	box-shadow: 0 0 0 3px rgba(var(--th-rgb-turquoise), 0.18);
	background: rgba(15, 23, 42, 0.85);
}

#airband-acp-shell .acp-form-panel__body input[type="submit"],
#airband-acp-shell .acp-form-panel__body .wpcf7-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 0.5rem;
	padding: 0.95rem 2.25rem;
	min-height: 3rem;
	width: 100%;
	font-weight: 700;
	font-size: 1rem;
	color: #041018 !important;
	background: linear-gradient(135deg, var(--acp-accent) 0%, var(--acp-accent-hover) 100%) !important;
	border: none !important;
	border-radius: 12px;
	cursor: pointer;
	box-shadow: 0 12px 40px rgba(var(--th-rgb-turquoise), 0.25);
	transition: transform 0.2s ease, box-shadow 0.25s ease, filter 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
	#airband-acp-shell .acp-form-panel__body input[type="submit"]:hover,
	#airband-acp-shell .acp-form-panel__body .wpcf7-submit:hover {
		transform: translateY(-2px);
		box-shadow: 0 16px 48px rgba(var(--th-rgb-turquoise), 0.35);
		filter: brightness(1.05);
	}
}

#airband-acp-shell .acp-form-panel__body .wpcf7-not-valid-tip {
	font-size: 0.85rem;
	margin-top: 0.35rem;
	color: #fda4af;
}

#airband-acp-shell .acp-form-panel__body .wpcf7-response-output {
	margin-top: 1rem;
	padding: 1rem;
	border-radius: 10px;
	border-width: 1px;
	font-size: 0.95rem;
}

#airband-acp-shell .acp-form-panel__body .wpcf7-spinner {
	margin-left: 0.5rem;
}

/* CTA */
#airband-acp-shell .acp-cta {
	padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(3rem, 8vw, 5rem);
	background:
		radial-gradient(ellipse 90% 80% at 50% 120%, rgba(var(--th-rgb-turquoise), 0.18), transparent 55%),
		linear-gradient(180deg, var(--acp-bg-deep) 0%, #060a12 100%);
	border-top: 1px solid var(--acp-border);
}

#airband-acp-shell .acp-cta__inner {
	display: flex;
	flex-direction: column;
	gap: 1.75rem;
	padding: clamp(1.75rem, 4vw, 2.75rem);
	border-radius: calc(var(--acp-radius) + 6px);
	background: var(--acp-surface-strong);
	backdrop-filter: blur(var(--acp-blur));
	-webkit-backdrop-filter: blur(var(--acp-blur));
	border: 1px solid var(--acp-border);
	box-shadow: var(--acp-shadow);
}

@media (min-width: 768px) {
	#airband-acp-shell .acp-cta__inner {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 2rem;
	}
}

#airband-acp-shell .acp-cta__title {
	font-weight: 800;
	font-size: clamp(1.5rem, 3vw, 1.85rem);
	letter-spacing: -0.03em;
	margin: 0 0 0.5rem;
	color: #fff;
}

#airband-acp-shell .acp-cta__lead {
	margin: 0;
	font-size: 1.05rem;
	color: var(--acp-text-muted);
	line-height: 1.55;
	max-width: 32rem;
}

#airband-acp-shell .acp-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	flex-shrink: 0;
}

#airband-acp-shell .acp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.85rem 1.75rem;
	min-height: 3rem;
	font-weight: 700;
	font-size: 0.95rem;
	border-radius: 999px;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

#airband-acp-shell .acp-btn--primary {
	color: #041018 !important;
	background: linear-gradient(135deg, var(--acp-accent), var(--acp-accent-hover));
	border: 2px solid transparent;
	box-shadow: 0 8px 28px rgba(var(--th-rgb-turquoise), 0.3);
}

@media (hover: hover) and (pointer: fine) {
	#airband-acp-shell .acp-btn--primary:hover {
		transform: translateY(-2px);
		box-shadow: 0 14px 40px rgba(var(--th-rgb-turquoise), 0.4);
	}
}

#airband-acp-shell .acp-btn--ghost {
	color: #fff !important;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
	border: 2px solid rgba(255, 255, 255, 0.28);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 6px 24px rgba(0, 0, 0, 0.25);
}

@media (hover: hover) and (pointer: fine) {
	#airband-acp-shell .acp-btn--ghost:hover {
		border-color: rgba(var(--th-rgb-turquoise), 0.65);
		background: linear-gradient(180deg, rgba(var(--th-rgb-turquoise), 0.22) 0%, rgba(var(--th-rgb-turquoise), 0.08) 100%);
		transform: translateY(-2px);
	}
}

/* Reveal */
#airband-acp-shell .acp-reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

#airband-acp-shell .acp-reveal.acp-reveal--in {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	#airband-acp-shell .acp-reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}

	#airband-acp-shell .acp-card:hover,
	#airband-acp-shell .acp-btn--primary:hover,
	#airband-acp-shell .acp-btn--ghost:hover {
		transform: none;
	}
}
