/* ===== FOOTER ===== */
.dr1056footer {
	background: radial-gradient(circle at top, #0a0a0a, #000);
	color: #fff;
	padding: 70px 20px 30px;
	opacity: 0;
	transform: translateY(40px);
	transition: all 0.8s ease;
	position: relative;
}

/* TOP GLOW LINE */
.dr1056footer::before {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background: linear-gradient(90deg, transparent, #00f2fe, transparent);
	margin-bottom: 30px;
	opacity: 0.5;
}

.dr1056footer.footer-visible {
	opacity: 1;
	transform: translateY(0);
}

/* ===== CONTAINER ===== */
.dr1056footer .footer-container {
	display: flex;
	justify-content: space-between;
	gap: 40px;
	flex-wrap: wrap;
	max-width: 1200px;
	margin: auto;
}

/* ===== COLUMNS ===== */
.dr1056footer .footer-col {
	flex: 1;
	min-width: 220px;
}

/* ===== LOGO (BIG + 3D) ===== */
.dr1056footer .footer-logo {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 15px;
	perspective: 800px;
}

/* BIG LOGO */
.dr1056footer .footer-logo img {
	width: 90px;
	height: 90px;
	object-fit: contain;

	transform: rotateY(0deg) rotateX(0deg) scale(1);
	transition: transform 0.4s ease, filter 0.4s ease;

	filter: drop-shadow(0 5px 15px rgba(0, 242, 254, 0.3));
	animation: dr1056footerFloat 3s ease-in-out infinite alternate;
}

/* HOVER 3D */
.dr1056footer .footer-logo img:hover {
	transform: rotateY(15deg) rotateX(10deg) scale(1.1);
	filter: drop-shadow(0 10px 30px rgba(0, 242, 254, 0.6));
}

/* BRAND TEXT */
.dr1056footer .footer-logo h2 {
	font-size: 26px;
	font-weight: 800;
	letter-spacing: 1px;

	background: linear-gradient(90deg, #00f2fe, #4facfe);
	-webkit-background-clip: text;
	color: transparent;

	text-shadow:
		0 2px 5px rgba(0,0,0,0.5),
		0 5px 15px rgba(0, 242, 254, 0.3);

	transition: 0.3s;
}

.dr1056footer .footer-logo h2:hover {
	text-shadow:
		0 5px 20px rgba(0, 242, 254, 0.6),
		0 10px 30px rgba(79, 172, 254, 0.4);
}

/* FLOAT KEYFRAME */
@keyframes dr1056footerFloat {
	from { transform: translateY(0px); }
	to   { transform: translateY(-8px); }
}

/* ===== TEXT ===== */
.dr1056footer p {
	font-size: 14px;
	color: #aaa;
	line-height: 1.6;
}

/* ===== HEADINGS ===== */
.dr1056footer h3 {
	margin-bottom: 12px;
	font-size: 16px;
	color: #ccc;
}

/* ===== LINKS ===== */
.dr1056footer a {
	display: block;
	color: #aaa;
	text-decoration: none;
	margin-bottom: 8px;
	transition: 0.3s;
}

.dr1056footer a:hover {
	color: #00f2fe;
	transform: translateX(6px);
}

/* ===== SOCIAL ===== */
.dr1056footer .footer-social {
	display: flex;
	gap: 12px;
	margin-top: 15px;
}

.dr1056footer .footer-social a {
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(6px);
	font-size: 16px;
	transition: 0.3s;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.dr1056footer .footer-social a:hover {
	background: linear-gradient(135deg, #00f2fe, #4facfe);
	color: #000;
	transform: scale(1.15);
	box-shadow: 0 10px 25px rgba(0, 242, 254, 0.5);
}

/* ===== QR ===== */
.dr1056footer .footer-qr {
	margin-top: 15px;
	text-align: center;
}

.dr1056footer .footer-qr img {
	width: 90px;
	height: 90px;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: 0.3s;
}

.dr1056footer .footer-qr img:hover {
	transform: scale(1.05);
	box-shadow: 0 0 15px rgba(0, 242, 254, 0.4);
}

.dr1056footer .footer-qr span {
	display: block;
	font-size: 12px;
	margin-top: 6px;
	color: #888;
}

/* ===== FOOTER BOTTOM ===== */
.dr1056footer .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;
}

/* COPYRIGHT */
.dr1056footer .footer-copy {
	margin-bottom: 8px;
}

/* ===== POWERED BY ===== */
.dr1056footer .powered-by {
	font-size: 12px;
	color: #666;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 6px;
	opacity: 0.8;
}

.dr1056footer .powered-by a {
	color: #00f2fe;
	font-weight: 500;
	text-decoration: none;
	position: relative;
	transition: 0.3s;
}

.dr1056footer .powered-by a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 0%;
	height: 1px;
	background: #00f2fe;
	transition: 0.3s;
}

.dr1056footer .powered-by a:hover::after {
	width: 100%;
}

.dr1056footer .powered-by a:hover {
	color: #4facfe;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

	.dr1056footer .footer-container {
		flex-direction: column;
		text-align: center;
	}

	.dr1056footer .footer-logo {
		justify-content: center;
	}

	.dr1056footer .footer-social {
		justify-content: center;
	}

	.dr1056footer .footer-logo img {
		width: 70px;
		height: 70px;
	}

	.dr1056footer .footer-logo h2 {
		font-size: 22px;
	}

	.dr1056footer a:hover {
		transform: none;
	}
}