/* ================= FOOTER WRAPPER ================= */
.dr1050footer {
	background: linear-gradient(135deg, #0a3cff, #001c8f);
	color: #ffffff;
	font-family: 'Poppins', 'Noto Serif Telugu', sans-serif;
}

/* ================= INNER ================= */
.dr1050footer .footer-inner {
	max-width: 1200px;
	margin: auto;
	padding: 60px 16px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 34px;
	align-items: start;
}

/* ================= BRAND ================= */
.dr1050footer .footer-brand {
	text-align: left;
}

/* 🔥 BIG LOGO WITH GLASS BACKGROUND */
.dr1050footer .footer-brand img {
	height: 120px;
	width: auto;
	padding: 14px;
	border-radius: 22px;
	/* Glass + gradient background */
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.18),
		rgba(255, 255, 255, 0.06));
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	box-shadow: 0 20px 42px rgba(0, 0, 0, 0.45), inset 0 0 0 1px
		rgba(255, 255, 255, 0.2);
	margin-bottom: 18px;
	display: block;
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.dr1050footer .footer-brand img:hover {
	transform: scale(1.07);
	box-shadow: 0 26px 56px rgba(0, 0, 0, 0.55), inset 0 0 0 1px
		rgba(255, 255, 255, 0.3);
}

.dr1050footer .footer-brand h3 {
	margin: 0;
	font-size: 20px;
	font-weight: 700;
	color: #ffeb3b;
}

.dr1050footer .footer-brand .telugu {
	font-size: 14px;
	margin: 8px 0;
	opacity: 0.95;
	line-height: 1.4;
}

.dr1050footer .footer-brand .summary {
	font-size: 13px;
	opacity: 0.85;
	line-height: 1.6;
}

/* ================= LINKS ================= */
.dr1050footer .footer-links h4, .dr1050footer .footer-actions h4,
	.dr1050footer .footer-qr h4 {
	font-size: 16px;
	margin-bottom: 12px;
	color: #ffeb3b;
}

.dr1050footer .footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.dr1050footer .footer-links ul li {
	margin-bottom: 8px;
}

.dr1050footer .footer-links ul li a {
	color: #ffffff;
	text-decoration: none;
	font-size: 14px;
	opacity: 0.9;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.dr1050footer .footer-links ul li a:hover {
	opacity: 1;
	transform: translateX(3px);
	text-decoration: underline;
}

/* ================= ACTION BUTTONS ================= */
.dr1050footer .footer-actions a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 11px 16px;
	border-radius: 10px;
	text-decoration: none;
	font-size: 14px;
	margin-bottom: 10px;
	font-weight: 600;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dr1050footer .call-btn {
	background: #ffffff;
	color: #0a3cff;
}

.dr1050footer .whatsapp-btn {
	background: linear-gradient(to right, #25d366, #1da851);
	color: #ffffff;
}

.dr1050footer .footer-actions a:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

/* ================= SOCIALS ================= */
.dr1050footer .socials {
	margin-top: 14px;
	display: flex;
	gap: 14px;
}

.dr1050footer .socials a {
	color: #ffffff;
	font-size: 18px;
	opacity: 0.9;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.dr1050footer .socials a:hover {
	opacity: 1;
	transform: scale(1.15);
}

/* ================= QR ================= */
.dr1050footer .footer-qr img {
	width: 150px;
	height: 150px;
	padding: 8px;
	border-radius: 16px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.18),
		rgba(255, 255, 255, 0.05));
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45), inset 0 0 0 1px
		rgba(255, 255, 255, 0.2);
}

.dr1050footer .footer-qr p {
	font-size: 12px;
	margin-top: 8px;
	opacity: 0.9;
}

/* ================= BOTTOM ================= */
.dr1050footer .footer-bottom {
	background: rgba(0, 0, 0, 0.28);
	text-align: center;
	padding: 14px 10px;
	font-size: 13px;
}

.dr1050footer .footer-bottom p {
	margin: 4px 0;
}

.dr1050footer .footer-bottom .powered {
	opacity: 0.85;
}

.dr1050footer .footer-bottom .powered a {
	color: #ffeb3b;
	text-decoration: none;
	font-weight: 600;
}

.dr1050footer .footer-bottom .powered a:hover {
	text-decoration: underline;
}

/* ================= MOBILE ================= */
@media ( max-width : 600px) {
	.dr1050footer .footer-inner {
		grid-template-columns: 1fr;
		text-align: center;
		padding: 40px 14px;
	}
	.dr1050footer .footer-brand {
		text-align: center;
	}
	.dr1050footer .footer-brand img {
		height: 95px;
		margin: 0 auto 16px;
	}
	.dr1050footer .footer-actions a {
		width: 85%;
		margin: 6px auto;
		justify-content: center;
	}
	.dr1050footer .socials {
		justify-content: center;
	}
	.dr1050footer .footer-qr img {
		margin: 0 auto;
	}
}