/* ================= ROOT ================= */
.dr1058footer {
	padding: 90px 20px 30px;
	color: #e5e7eb;
	display: flex;
	flex-direction: column;
	background: radial-gradient(circle at 15% 20%, rgba(59, 130, 246, 0.18), transparent 40%),
		radial-gradient(circle at 85% 10%, rgba(250, 204, 21, 0.18), transparent 40%),
		linear-gradient(180deg, #020617, #030a1a 60%, #020617);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ================= CONTAINER ================= */
.dr1058footer .footer-container {
	max-width: 1200px;
	margin: auto;
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr;
	gap: 50px;
}

/* ================= COLUMN ================= */
.dr1058footer .footer-col {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

/* ================= LOGO ================= */
.dr1058footer .footer-logo {
	display: flex;
	gap: 18px;
	align-items: flex-start;
	margin-bottom: 18px;
}

.dr1058footer .footer-logo img {
	width: 140px;
	max-width: 100%;
	height: auto;
	border-radius: 14px;
	background: linear-gradient(145deg, #ffffff, #f1f5f9);
	padding: 10px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28),
		inset 0 1px 0 rgba(255, 255, 255, 0.9);
	object-fit: contain;
	transition: 0.3s ease;
}

.dr1058footer .footer-logo img:hover {
	transform: translateY(-2px) scale(1.03);
	box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35);
}

/* ================= TEXT ================= */
.dr1058footer h2 {
	font-size: 22px;
	font-weight: 700;
	color: #facc15;
}

.dr1058footer .footer-degree {
	font-size: 11px;
	color: #cbd5f5;
}

.dr1058footer .footer-role {
	font-size: 13px;
	color: #93c5fd;
}

.dr1058footer .footer-about {
	font-size: 14px;
	color: #d1d5db;
	line-height: 1.7;
}

.dr1058footer h3 {
	color: #ffffff;
	margin-bottom: 12px;
	font-size: 15px;
}

/* ================= LINKS ================= */
.dr1058footer a {
	color: #cbd5e1;
	text-decoration: none;
	margin-bottom: 8px;
	transition: 0.3s ease;
}

.dr1058footer a:hover {
	color: #facc15;
	transform: translateX(4px);
}

/* ================= ADDRESS ================= */
.dr1058footer .footer-address {
	font-size: 13px;
	line-height: 1.6;
	color: #cbd5e1;
	margin-top: 6px;
}

/* ================= SOCIAL ================= */
.dr1058footer .footer-social {
	display: flex;
	gap: 10px;
	margin-top: 14px;
}

.dr1058footer .footer-social a {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: 0.3s;
}

.dr1058footer .footer-social a:hover {
	background: #facc15;
	color: #000;
	transform: translateY(-3px);
}

/* ================= QR ================= */
.dr1058footer .footer-qr {
	margin-top: 18px;
	display: flex;
	flex-direction: column;
	align-items: center;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	padding: 12px;
	border-radius: 14px;
	width: fit-content;
}

.dr1058footer .footer-qr img {
	width: 95px;
	border-radius: 10px;
}

.dr1058footer .footer-qr span {
	margin-top: 6px;
	font-size: 12px;
	color: #cbd5e1;
}

/* ================= FOOTER BOTTOM ================= */
.dr1058footer .footer-bottom {
	text-align: center;
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 13px;
	color: #cbd5e1;
}

.dr1058footer .footer-copy {
	margin-bottom: 6px;
}

/* ================= DESIGNED BY ================= */
.dr1058footer .designed-by {
	margin-top: 8px;
	font-size: 12px;
	color: #94a3b8;
}

.dr1058footer .designed-by a {
	color: #f97316;
	text-decoration: none;
}

.dr1058footer .designed-by a:hover {
	color: #fb923c;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
	.dr1058footer .footer-container {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 35px;
	}

	.dr1058footer .footer-col {
		align-items: center;
	}

	.dr1058footer .footer-logo {
		flex-direction: column;
		align-items: center;
	}
}