/* ==========================================
BASE FOOTER WRAPPER
========================================== */
.dr1061footer {
	position: relative;
	color: #e8eef6;
	background: #070b14;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ==========================================
BACKGROUND IMAGE
========================================== */
.dr1061footerBackground {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.dr1061footerBackground img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.28;
	filter: brightness(1.35) contrast(1.2) saturate(1.25);
}

/* ==========================================
MAIN WRAP
========================================== */
.dr1061footerWrap {
	position: relative;
	z-index: 2;
	width: min(1200px, 92%);
	margin: auto;
	padding: 70px 0 40px;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
	gap: 35px;
}

/* ==========================================
BRAND SECTION
========================================== */
.dr1061footerBrand h2 {
	font-size: 1.8rem;
	font-weight: 700;
	margin: 10px 0;
	letter-spacing: 0.2px;
}

.dr1061footerTag {
	color: #7cc7ff;
	font-weight: 500;
	font-size: 0.95rem;
}

.dr1061footerSummary {
	margin-top: 12px;
	line-height: 1.7;
	color: #b7c3d6;
	font-size: 0.95rem;
}

/* ==========================================
🔥 BIG PREMIUM LOGO (UPDATED)
========================================== */
.dr1061footerLogo {
	display: inline-flex;
	align-items: center;
	position: relative;
	margin-bottom: 18px;
}

/* MAIN LOGO */
.dr1061footerLogo img {
	width: 170px; /* 🔥 BIG LOGO */
	max-width: 100%;
	height: auto;
	border-radius: 18px;
	padding: 10px;
	background: rgba(255, 255, 255, 0.06);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 0 1px
		rgba(255, 255, 255, 0.08);
	transition: all 0.35s ease;
}

/* HOVER */
.dr1061footerLogo img:hover {
	transform: translateY(-6px) scale(1.05);
	box-shadow: 0 30px 70px rgba(0, 0, 0, 0.65), 0 0 25px
		rgba(124, 199, 255, 0.25), inset 0 0 0 1px rgba(124, 199, 255, 0.3);
}

/* OUTER FRAME GLOW */
.dr1061footerLogo::after {
	content: "";
	position: absolute;
	inset: -10px;
	border-radius: 24px;
	border: 1px solid rgba(124, 199, 255, 0.18);
	opacity: 0;
	transition: 0.3s ease;
}

.dr1061footerLogo:hover::after {
	opacity: 1;
}

/* ==========================================
SECTION TITLES
========================================== */
.dr1061footerSection h3 {
	font-size: 0.95rem;
	font-weight: 600;
	margin-bottom: 16px;
	color: #ffffff;
}

/* ==========================================
LISTS
========================================== */
.dr1061footerSection ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.dr1061footerSection li {
	margin-bottom: 10px;
}

.dr1061footerSection a {
	color: #aab6c5;
	text-decoration: none;
	font-size: 0.92rem;
	transition: 0.2s ease;
	position: relative;
}

.dr1061footerSection a:hover {
	color: #7cc7ff;
}

.dr1061footerSection a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -3px;
	width: 0%;
	height: 1px;
	background: #7cc7ff;
	transition: 0.25s ease;
}

.dr1061footerSection a:hover::after {
	width: 100%;
}

/* ==========================================
TEXT
========================================== */
.dr1061footerSection p {
	margin: 0 0 10px;
	color: #b7c3d6;
	font-size: 0.92rem;
	line-height: 1.6;
}

/* ==========================================
QR SECTION
========================================== */
.dr1061footerQR {
	margin-top: 15px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.dr1061footerQR img {
	width: 100px;
	border-radius: 10px;
	background: #fff;
	padding: 6px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.dr1061footerQR span {
	font-size: 0.85rem;
	color: #9fb0c7;
}

/* ==========================================
BOTTOM BAR
========================================== */
.dr1061footerBottom {
	position: relative;
	z-index: 2;
	padding: 18px 10px;
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	background: #050810;
}

.dr1061footerBottom p {
	margin: 4px 0;
	font-size: 0.9rem;
	color: #9fb0c7;
}

.dr1061footerBottom strong {
	color: #7cc7ff;
}

/* ==========================================
POWERED BY
========================================== */
.dr1061footerPoweredBy {
	margin: 0;
	font-size: 0.9rem;
	color: #9fb0c7;
}

.dr1061footerPoweredBy a {
	text-decoration: none;
	margin-left: 6px;
	position: relative;
}

.dr1061footerPoweredBy a strong {
	color: #7cc7ff;
	transition: 0.25s ease;
}

.dr1061footerPoweredBy a:hover strong {
	color: #fff;
	text-shadow: 0 0 12px rgba(124, 199, 255, 0.3);
}

/* underline */
.dr1061footerPoweredBy a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -3px;
	width: 0%;
	height: 1px;
	background: #7cc7ff;
	transition: 0.25s ease;
}

.dr1061footerPoweredBy a:hover::after {
	width: 100%;
}

/* ==========================================
RESPONSIVE
========================================== */
@media ( max-width : 1100px) {
	.dr1061footerWrap {
		grid-template-columns: 1fr 1fr;
	}
	.dr1061footerLogo img {
		width: 150px;
	}
}

@media ( max-width : 768px) {
	.dr1061footerWrap {
		grid-template-columns: 1fr;
		text-align: left;
		gap: 28px;
	}
	.dr1061footerLogo img {
		width: 130px;
	}
}