/* Hide default Astra footer to avoid duplicate footers when WANGAO footer is enabled */
footer.site-footer {
	display: none !important;
}

.wangao-footer-cta {
	padding: 80px 16px 32px;
	background: #f3f4f6;
	border-top: 1px solid #e5e7eb;
}

.wangao-footer-cta__container {
	max-width: 1200px;
	margin: 0 auto;
}

.wangao-footer-cta__card {
	display: grid;
	grid-template-columns: 1fr;
	border-radius: 18px;
	overflow: hidden;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

@media (min-width: 960px) {
	.wangao-footer-cta__card {
		grid-template-columns: 5fr 7fr;
	}
}

.wangao-footer-cta__left {
	position: relative;
	background: #0b1220;
	color: #ffffff;
	padding: 40px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 28px;
}

.wangao-footer-cta__glow {
	position: absolute;
	top: -80px;
	right: -80px;
	width: 240px;
	height: 240px;
	border-radius: 999px;
	background: radial-gradient(circle at 30% 30%, rgba(0, 155, 77, 0.28), transparent 60%);
	filter: blur(2px);
	opacity: 0.9;
	pointer-events: none;
}

.wangao-footer-cta__kicker {
	color: var(--wangao-green, #009b4d);
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-size: 12px;
	margin-bottom: 14px;
}

.wangao-footer-cta__title {
	margin: 0;
	font-size: 34px;
	line-height: 1.1;
	letter-spacing: -0.02em;
	font-weight: 800;
	font-family: "Oswald", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
	text-transform: uppercase;
}

.wangao-footer-cta__accent {
	color: var(--wangao-green, #009b4d);
}

.wangao-footer-cta__desc {
	margin: 16px 0 0;
	color: rgba(229, 231, 235, 0.78);
	line-height: 1.7;
	max-width: 520px;
}

.wangao-footer-cta__channels {
	display: grid;
	gap: 14px;
}

.wangao-footer-cta__channel {
	display: flex;
	gap: 14px;
	align-items: center;
	text-decoration: none;
	color: #ffffff;
}

.wangao-footer-cta__icon {
	width: 46px;
	height: 46px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--wangao-green, #009b4d);
	font-size: 20px;
}

.wangao-footer-cta__meta-label {
	display: block;
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(156, 163, 175, 0.9);
	font-weight: 800;
}

.wangao-footer-cta__meta-value {
	display: block;
	font-size: 16px;
	font-weight: 800;
}

.wangao-footer-cta__right {
	padding: 40px;
}

.wangao-footer-cta__form-title {
	font-family: "Oswald", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
	font-size: 20px;
	font-weight: 800;
	text-transform: uppercase;
	color: #111827;
}

.wangao-footer-cta__form-desc {
	margin-top: 6px;
	color: #6b7280;
}

.wangao-footer-cta__form {
	margin-top: 18px;
	display: grid;
	gap: 12px;
}

.wangao-footer-cta__grid {
	display: grid;
	gap: 12px;
	grid-template-columns: 1fr;
}

@media (min-width: 640px) {
	.wangao-footer-cta__grid {
		grid-template-columns: 1fr 1fr;
	}
}

.wangao-footer-cta__field span {
	display: block;
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #6b7280;
	margin-bottom: 6px;
}

.wangao-footer-cta__field input,
.wangao-footer-cta__field textarea {
	width: 100%;
	border: 1px solid #e5e7eb;
	background: #f9fafb;
	border-radius: 12px;
	padding: 12px 14px;
	outline: none;
	transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
	font-size: 14px;
}

.wangao-footer-cta__field input:focus,
.wangao-footer-cta__field textarea:focus {
	border-color: rgba(0, 155, 77, 0.55);
	background: #ffffff;
	box-shadow: 0 0 0 4px rgba(0, 155, 77, 0.12);
}

.wangao-footer-cta__submit {
	border: none;
	border-radius: 999px;
	padding: 14px 18px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	background: var(--wangao-green, #009b4d);
	color: #ffffff;
	cursor: pointer;
	transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
	box-shadow: 0 16px 40px rgba(0, 155, 77, 0.25);
}

.wangao-footer-cta__submit:hover {
	background: #0a8a46;
	transform: translateY(-1px);
}

.wangao-site-footer {
	background: #000000;
	color: #ffffff;
	padding: 56px 16px 24px;
	border-top: 1px solid #111827;
}

.wangao-site-footer__container {
	max-width: 1200px;
	margin: 0 auto;
}

.wangao-site-footer__grid {
	display: grid;
	gap: 24px;
	grid-template-columns: 1fr;
}

@media (min-width: 768px) {
	.wangao-site-footer__grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 36px;
	}
}

.wangao-site-footer__title {
	font-family: "Oswald", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 16px;
	padding-left: 12px;
	border-left: 2px solid var(--wangao-green, #009b4d);
}

.wangao-site-footer__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 10px;
	color: rgba(156, 163, 175, 0.9);
	font-size: 14px;
}

.wangao-site-footer__list a {
	color: inherit;
	text-decoration: none;
	transition: color 160ms ease;
}

.wangao-site-footer__list a:hover {
	color: #ffffff;
}

.wangao-site-footer__bottom {
	margin-top: 32px;
	padding-top: 18px;
	border-top: 1px solid #111827;
	color: rgba(156, 163, 175, 0.78);
	font-size: 12px;
	display: flex;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}

/* Right floating contact icons */
.wangao-float {
	position: fixed;
	right: calc(var(--wangao-float-edge, 18px) + env(safe-area-inset-right));
	bottom: calc(
		var(--wangao-float-edge, 18px) + env(safe-area-inset-bottom) + var(--wangao-scrolltop-size, 52px) +
			var(--wangao-scrolltop-gap, 12px)
	);
	z-index: 9999;
	display: flex;
	flex-direction: column;
	gap: var(--wangao-float-gap, 10px);
	max-height: calc(100vh - 120px);
	overflow-y: auto;
	scrollbar-width: thin;
}

.wangao-float__btn {
	width: var(--wangao-float-btn-size, 52px);
	height: var(--wangao-float-btn-size, 52px);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(15, 23, 42, 0.92);
	color: #ffffff;
	text-decoration: none;
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
	backdrop-filter: blur(10px);
	transition: transform 160ms ease, background 160ms ease;
}

.wangao-float__btn:hover {
	transform: translateY(-2px);
	background: linear-gradient(135deg, rgba(0, 155, 77, 0.92), rgba(0, 102, 204, 0.65));
}

/* Left social dock */
.wangao-social-dock {
	position: fixed;
	left: calc(var(--wangao-float-edge, 18px) + env(safe-area-inset-left));
	bottom: calc(var(--wangao-float-edge, 18px) + env(safe-area-inset-bottom));
	z-index: 9999;
	display: flex;
	gap: 10px;
}

.wangao-social-dock__btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 14px;
	border-radius: 16px;
	background: #ffffff;
	color: #111827;
	text-decoration: none;
	border: 1px solid #e5e7eb;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
	font-weight: 900;
	letter-spacing: 0.02em;
}

.wangao-social-dock__btn i {
	font-size: 20px;
	color: var(--wangao-green, #009b4d);
}

.wangao-social-dock__btn:hover {
	border-color: rgba(0, 155, 77, 0.45);
}

@media (max-width: 544px) {
	.wangao-float {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, var(--wangao-float-btn-size, 52px)));
		gap: 8px;
		max-height: calc(100vh - 96px);
		max-width: calc(var(--wangao-float-btn-size, 52px) * 2 + 8px);
	}

	.wangao-float__btn {
		width: 46px;
		height: 46px;
		border-radius: 14px;
	}

	.wangao-social-dock__btn {
		border-radius: 14px;
	}
}
