/* ================= FOOTER ROOT ================= */
.dr1057footer {
	background: radial-gradient(circle at top, #0b1a3a, #050814 70%);
	color: #fff;
	padding: 80px 20px 30px;
	position: relative;
	overflow: hidden;
}

/* TOP GLOW LINE */
.dr1057footer::before {
	content: "";
	width: 100%;
	height: 1px;
	display: block;
	background: linear-gradient(90deg, transparent, #00D4FF, transparent);
	margin-bottom: 40px;
	opacity: 0.7;
}

/* BACKGROUND GLOW */
.dr1057footer::after {
	content: "";
	position: absolute;
	top: -100px;
	left: 50%;
	transform: translateX(-50%);
	width: 600px;
	height: 300px;
	background: radial-gradient(circle, rgba(0,212,255,0.15), transparent);
	filter: blur(60px);
	z-index: 0;
}

/* ================= CONTAINER ================= */
.dr1057footer .footer-container {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	max-width: 1200px;
	margin: auto;
	position: relative;
	z-index: 1;
}

/* ================= COLUMN ================= */
.dr1057footer .footer-col {
	flex: 1;
	min-width: 220px;
}

/* ================= BRAND ================= */
.dr1057footer .footer-logo {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 18px;
	flex-wrap: wrap;
}

/* LOGO */
.dr1057footer .footer-logo img {
	width: 140px;
	height: auto;
	padding: 10px 14px;
	border-radius: 14px;
	background: rgba(255,255,255,0.9);
	border: 1px solid rgba(0,212,255,0.25);
	box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

/* TITLE */
.dr1057footer .footer-logo h2 {
	font-size: 22px;
	font-weight: 800;
	background: linear-gradient(90deg, #00D4FF, #4facfe);
	-webkit-background-clip: text;
	color: transparent;
}

/* ================= TEXT ================= */
.dr1057footer p {
	font-size: 14px;
	color: #aaa;
	line-height: 1.6;
	margin: 0 0 10px;
}

/* ================= HEADINGS ================= */
.dr1057footer h3 {
	margin-bottom: 12px;
	font-size: 16px;
	color: #ddd;
}

/* ================= LINKS (FIXED ALIGNMENT ISSUE) ================= */
.dr1057footer a {
	display: block;
	color: #aaa;
	text-decoration: none;
	margin-bottom: 8px;
	padding-left: 0;
	line-height: 1.5;
	transition: 0.3s ease;
}

.dr1057footer a:hover {
	color: #00D4FF;
	transform: translateX(4px);
}

/* ================= SOCIAL ================= */
.dr1057footer .footer-social {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 15px;
}

.dr1057footer .footer-social a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255,255,255,0.08);
	backdrop-filter: blur(8px);
	transition: 0.3s ease;
}

.dr1057footer .footer-social a:hover {
	background: linear-gradient(135deg, #00D4FF, #4facfe);
	transform: scale(1.1);
}

/* ================= QR ================= */
.dr1057footer .footer-qr {
	margin-top: 15px;
	text-align: center;
}

.dr1057footer .footer-qr img {
	width: 90px;
	height: 90px;
	border-radius: 10px;
	border: 1px solid rgba(255,255,255,0.1);
}

.dr1057footer .footer-qr span {
	display: block;
	font-size: 12px;
	color: #888;
	margin-top: 6px;
}

/* ================= BOTTOM ================= */
.dr1057footer .footer-bottom {
	text-align: center;
	margin-top: 50px;
	border-top: 1px solid rgba(255,255,255,0.1);
	padding-top: 20px;
	font-size: 13px;
	color: #777;
}

/* ================= DESIGNED BY ================= */
.dr1057footer .designed-by {
	margin-top: 6px;
	font-size: 12px;
	color: #666;
	display: flex;
	justify-content: center;
	gap: 6px;
	flex-wrap: wrap;
}

.dr1057footer .designed-by a {
	color: #00D4FF;
	position: relative;
}

/* ================= MOBILE FIX (IMPORTANT) ================= */
@media (max-width: 768px) {

	.dr1057footer {
		padding: 60px 16px 25px;
		text-align: center;
	}

	.dr1057footer .footer-container {
		flex-direction: column;
		gap: 30px;
	}

	.dr1057footer .footer-col {
		min-width: 100%;
	}

	.dr1057footer .footer-logo {
		justify-content: center;
		text-align: center;
	}

	.dr1057footer .footer-logo img {
		width: 110px;
	}

	.dr1057footer a {
		margin-bottom: 10px;
	}

	.dr1057footer a:hover {
		transform: none;
	}

	.dr1057footer .footer-social {
		justify-content: center;
	}

	.dr1057footer .designed-by {
		flex-direction: column;
		gap: 2px;
	}
}