/* ================= FOOTER ROOT ================= */
.dr1057footer {
	background: radial-gradient(circle at top, #0b1a3a, #050814 70%);
	color: #fff;
	padding: 80px 20px 30px;
	position: relative;
	opacity: 0;
	transform: translateY(40px);
	transition: all 0.8s ease;
	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;
}

/* EXTRA GLOW BACKGROUND */
.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;
}

.dr1057footer.footer-visible {
	opacity: 1;
	transform: translateY(0);
}

/* ================= CONTAINER ================= */
.dr1057footer .footer-container {
	display: flex;
	gap: 50px;
	flex-wrap: wrap;
	max-width: 1200px;
	margin: auto;
	position: relative;
	z-index: 1;
}

/* ================= COLUMNS ================= */
.dr1057footer .footer-col {
	flex: 1;
	min-width: 220px;
}

/* ================= LOGO (RECTANGLE + 3D GLASS) ================= */
.dr1057footer .footer-logo {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 18px;
	perspective: 1000px;
}

/* LOGO IMAGE FIXED FOR RECTANGLE */
.dr1057footer .footer-logo img {
	width: 140px; /* 🔥 BIG DESKTOP */
	height: auto;

	/* 🔥 GLASS BACKGROUND */
	background: linear-gradient(
		135deg,
		rgba(255,255,255,0.95),
		rgba(255,255,255,0.75)
	);

	padding: 10px 16px;
	border-radius: 14px;

	/* subtle border */
	border: 1px solid rgba(0,212,255,0.25);

	/* 🔥 DEPTH SHADOW */
	box-shadow:
		0 15px 40px rgba(0,0,0,0.7),
		0 0 25px rgba(0,212,255,0.2),
		inset 0 2px 6px rgba(255,255,255,0.6),
		inset 0 -4px 8px rgba(0,0,0,0.15);

	/* smooth 3D */
	transform: rotateX(0deg) rotateY(0deg);
	transform-style: preserve-3d;

	transition: all 0.5s ease;

	animation: dr1057LogoFloat 4s ease-in-out infinite;
}

/* HOVER EFFECT (CONTROLLED PREMIUM) */
.dr1057footer .footer-logo img:hover {
	transform: rotateX(6deg) rotateY(10deg) scale(1.05);

	box-shadow:
		0 30px 70px rgba(0,0,0,0.9),
		0 0 35px rgba(0,212,255,0.35),
		inset 0 3px 10px rgba(255,255,255,0.7);
}

/* FLOAT ANIMATION */
@keyframes dr1057LogoFloat {
	0%,100% { transform: translateY(0px); }
	50% { transform: translateY(-6px); }
}

/* LOGO TEXT */
.dr1057footer .footer-logo h2 {
	font-size: 24px;
	font-weight: 800;

	background: linear-gradient(90deg, #00D4FF, #4facfe);
	-webkit-background-clip: text;
	color: transparent;

	text-shadow: 0 5px 20px rgba(0,212,255,0.2);
}

/* ================= TEXT ================= */
.dr1057footer p {
	font-size: 14px;
	color: #aaa;
	line-height: 1.6;
}

/* ================= HEADINGS ================= */
.dr1057footer h3 {
	margin-bottom: 14px;
	font-size: 16px;
	color: #ddd;
}

/* ================= LINKS ================= */
.dr1057footer a {
	display: block;
	color: #aaa;
	text-decoration: none;
	margin-bottom: 8px;
	transition: 0.3s;
}

.dr1057footer a:hover {
	color: #00D4FF;
	transform: translateX(6px);
}

/* ================= SOCIAL ================= */
.dr1057footer .footer-social {
	display: flex;
	gap: 12px;
	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);

	box-shadow: 0 5px 15px rgba(0,0,0,0.5);

	transition: 0.3s;
}

.dr1057footer .footer-social a:hover {
	background: linear-gradient(135deg, #00D4FF, #4facfe);
	color: #000;
	transform: scale(1.15);
	box-shadow: 0 10px 25px rgba(0,212,255,0.4);
}

/* ================= 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;
}

.dr1057footer .designed-by a {
	color: #00D4FF;
	text-decoration: none;
	position: relative;
}

.dr1057footer .designed-by a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 0%;
	height: 1px;
	background: linear-gradient(90deg, #00D4FF, #4facfe);
	transition: 0.3s;
}

.dr1057footer .designed-by a:hover::after {
	width: 100%;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

	.dr1057footer .footer-container {
		flex-direction: column;
		text-align: center;
	}

	.dr1057footer .footer-logo {
		justify-content: center;
	}

	/* 🔥 BIGGER MOBILE LOGO */
	.dr1057footer .footer-logo img {
		width: 120px;
		padding: 10px 14px;
	}

	.dr1057footer .footer-logo h2 {
		font-size: 22px;
	}

	.dr1057footer .footer-social {
		justify-content: center;
	}

	.dr1057footer a:hover {
		transform: none;
	}
}