.judev-watch-footer {
	--watch-footer-bg: #0c1118;
	--watch-footer-panel: #111925;
	--watch-footer-border: rgba(255, 255, 255, 0.12);
	--watch-footer-text: #eef3f8;
	--watch-footer-muted: #9ca7b4;
	--watch-footer-accent: #dfb16d;
	--watch-footer-input-bg: #0b1320;
	--watch-footer-input-border: rgba(255, 255, 255, 0.14);
	--watch-footer-button-bg: #dfb16d;
	--watch-footer-button-color: #131b26;
	--watch-footer-button-hover-bg: #edc78f;
	font-family: Poppins, Tajawal, "Segoe UI", sans-serif;
	padding: 24px;
	background:
		radial-gradient(1200px 320px at 90% -40%, rgba(223, 177, 109, 0.2), transparent 65%),
		linear-gradient(180deg, #0b1017 0%, var(--watch-footer-bg) 100%);
}

body[data-watch-demo-theme="light"] .judev-watch-footer,
.judev-watch-footer[data-demo-theme="light"] {
	--watch-footer-bg: #e9eef5;
	--watch-footer-panel: #f7fafe;
	--watch-footer-border: rgba(16, 24, 34, 0.14);
	--watch-footer-text: #132434;
	--watch-footer-muted: #556274;
	--watch-footer-accent: #c99755;
	--watch-footer-input-bg: #ffffff;
	--watch-footer-input-border: rgba(16, 24, 34, 0.16);
	--watch-footer-button-bg: #132434;
	--watch-footer-button-color: #ffffff;
	--watch-footer-button-hover-bg: #1e3347;
	background:
		radial-gradient(1200px 320px at 90% -40%, rgba(201, 151, 85, 0.14), transparent 65%),
		linear-gradient(180deg, #e7edf4 0%, var(--watch-footer-bg) 100%);
}

/* In Light mode keep footer action/link accents black instead of purple/blue. */
body[data-watch-demo-theme="light"] .judev-watch-footer .judev-watch-footer__links a,
body[data-watch-demo-theme="light"] .judev-watch-footer .judev-watch-footer__social-link,
body[data-watch-demo-theme="light"] .judev-watch-footer .judev-watch-footer__social-link i,
body[data-watch-demo-theme="light"] .judev-watch-footer .judev-watch-footer__social-link svg,
body[data-watch-demo-theme="light"] .judev-watch-footer .judev-watch-footer__social-link svg path,
.judev-watch-footer[data-demo-theme="light"] .judev-watch-footer__links a,
.judev-watch-footer[data-demo-theme="light"] .judev-watch-footer__social-link,
.judev-watch-footer[data-demo-theme="light"] .judev-watch-footer__social-link i,
.judev-watch-footer[data-demo-theme="light"] .judev-watch-footer__social-link svg,
.judev-watch-footer[data-demo-theme="light"] .judev-watch-footer__social-link svg path {
	color: #111111 !important;
	fill: currentColor !important;
	stroke: currentColor !important;
}

.judev-watch-footer__inner {
	max-width: 1480px;
	margin: 0 auto;
	padding: 30px 28px 24px;
	border-radius: 20px;
	border: 1px solid var(--watch-footer-border);
	background:
		linear-gradient(165deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
		var(--watch-footer-panel);
	color: var(--watch-footer-text);
}

.judev-watch-footer__top {
	display: grid;
	grid-template-columns: minmax(260px, 0.9fr) minmax(340px, 1.1fr);
	gap: 22px;
	align-items: start;
	padding-bottom: 22px;
	border-bottom: 1px solid var(--watch-footer-border);
	margin-bottom: 24px;
}

.judev-watch-footer__brand {
	margin: 0 0 10px;
	font-size: clamp(28px, 3vw, 40px);
	line-height: 1;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--watch-footer-text);
}

.judev-watch-footer__tagline {
	margin: 0;
	color: var(--watch-footer-muted);
	font-size: 14px;
	line-height: 1.7;
	max-width: 38ch;
}

.judev-watch-footer__title {
	margin: 0 0 10px;
	color: var(--watch-footer-text);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.judev-watch-footer__muted {
	color: var(--watch-footer-muted);
	font-size: 13px;
	line-height: 1.65;
}

.judev-watch-footer__subscribe {
	margin-top: 12px;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 10px;
}

.judev-watch-footer__subscribe input[type="email"] {
	height: 44px;
	border-radius: 12px;
	border: 1px solid var(--watch-footer-input-border);
	background: var(--watch-footer-input-bg);
	color: var(--watch-footer-text);
	padding: 0 14px;
	outline: none;
}

.judev-watch-footer__subscribe input[type="email"]::placeholder {
	color: var(--watch-footer-muted);
}

.judev-watch-footer__subscribe button {
	height: 44px;
	padding: 0 16px;
	border-radius: 12px;
	border: 0;
	background: var(--watch-footer-button-bg);
	color: var(--watch-footer-button-color);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.03em;
	cursor: pointer;
	transition: transform 0.2s ease, background-color 0.2s ease;
}

.judev-watch-footer__subscribe button:hover {
	transform: translateY(-1px);
	background: var(--watch-footer-button-hover-bg);
}

.judev-watch-footer__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 26px;
}

.judev-watch-footer__links,
.judev-watch-footer__meta {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 8px;
}

.judev-watch-footer__links a {
	color: var(--watch-footer-muted);
	text-decoration: none;
	font-size: 14px;
	transition: color 0.2s ease, transform 0.2s ease;
}

.judev-watch-footer__links a:hover {
	color: var(--watch-footer-accent);
	transform: translateX(2px);
}

.judev-watch-footer__meta li {
	color: var(--watch-footer-muted);
	font-size: 14px;
	line-height: 1.55;
}

.judev-watch-footer__social {
	margin-top: 14px;
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.judev-watch-footer__social-link {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: 1px solid var(--watch-footer-border);
	color: var(--watch-footer-text);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.judev-watch-footer__social-link i,
.judev-watch-footer__social-link svg,
.judev-watch-footer__social-link svg path {
	color: currentColor;
	fill: currentColor;
	stroke: currentColor;
}

.judev-watch-footer__social-link:hover {
	color: var(--watch-footer-accent);
	border-color: rgba(223, 177, 109, 0.5);
	transform: translateY(-1px);
}

body[data-watch-demo-theme="dark"] .judev-watch-footer .judev-watch-footer__social-link,
body[data-watch-demo-theme="dark"] .judev-watch-footer .judev-watch-footer__social-link i,
body[data-watch-demo-theme="dark"] .judev-watch-footer .judev-watch-footer__social-link svg,
body[data-watch-demo-theme="dark"] .judev-watch-footer .judev-watch-footer__social-link svg path,
body[data-watch-demo-theme="dark"] .judev-watch-footer .judev-watch-footer__links a,
.judev-watch-footer[data-demo-theme="dark"] .judev-watch-footer__links a,
.judev-watch-footer[data-demo-theme="dark"] .judev-watch-footer__social-link,
.judev-watch-footer[data-demo-theme="dark"] .judev-watch-footer__social-link i,
.judev-watch-footer[data-demo-theme="dark"] .judev-watch-footer__social-link svg,
.judev-watch-footer[data-demo-theme="dark"] .judev-watch-footer__social-link svg path {
	color: #ffffff !important;
	fill: currentColor !important;
	stroke: currentColor !important;
}

.judev-watch-footer__bottom {
	margin-top: 22px;
	padding-top: 16px;
	border-top: 1px solid var(--watch-footer-border);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
}

.judev-watch-footer__payments {
	color: var(--watch-footer-accent);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

@media (max-width: 1100px) {
	.judev-watch-footer__top {
		grid-template-columns: 1fr;
	}

	.judev-watch-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 700px) {
	.judev-watch-footer {
		padding: 14px;
	}

	.judev-watch-footer__inner {
		padding: 20px 14px 18px;
		border-radius: 16px;
	}

	.judev-watch-footer__top,
	.judev-watch-footer__grid,
	.judev-watch-footer__bottom {
		text-align: center;
	}

	.judev-watch-footer__grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.judev-watch-footer__subscribe {
		grid-template-columns: 1fr;
	}

	.judev-watch-footer__subscribe button {
		width: 100%;
	}

	.judev-watch-footer__social {
		justify-content: center;
	}

	.judev-watch-footer__bottom {
		justify-content: center;
	}
}
