.dr1048footer {
	background: linear-gradient(to bottom, rgba(17, 17, 17, 0.94),
		rgba(17, 17, 17, 0.94)),
		url('https://www.transparenttextures.com/patterns/gold-scale.png')
		no-repeat center center/cover;
	color: #f5eac5;
	font-family: 'Poppins', 'Noto Sans Telugu', sans-serif;
	padding: 50px 20px 30px;
	border-top: 5px solid #FFD700;
	background-blend-mode: overlay;
}

.footer-container {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	justify-content: space-between;
	max-width: 1200px;
	margin: auto;
}

.footer-brand {
	flex: 1 1 250px;
	display: flex;
	gap: 16px;
	align-items: center;
}

.footer-brand img {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	border: 4px solid #FFD700;
	padding: 8px;
	background: #222;
	transition: all 0.3s ease-in-out;
}

.footer-brand h2 {
	font-size: 1.4rem;
	color: #FFD700;
	margin-bottom: 5px;
}

.footer-brand p {
	font-size: 0.95rem;
	color: #d9cc9a;
}

.footer-links {
	flex: 1 1 180px;
}

.footer-links h4, .footer-contact h4, .footer-qr h4 {
	font-size: 1.1rem;
	color: #FFD700;
	margin-bottom: 12px;
}

.footer-links ul {
	list-style: none;
	padding: 0;
}

.footer-links li {
	margin-bottom: 10px;
}

.footer-links a {
	color: #f5eac5;
	text-decoration: none;
	transition: 0.3s;
}

.footer-links a:hover {
	color: #FFD700;
}

.footer-contact {
	flex: 1 1 200px;
}

.footer-btn {
	display: block;
	margin-bottom: 10px;
	padding: 10px 16px;
	border-radius: 25px;
	text-align: center;
	font-weight: 600;
	text-decoration: none;
	font-size: 0.95rem;
	width: 100%;
	max-width: 220px;
	transition: all 0.3s ease;
}

.call-btn {
	background: #FFD700;
	color: #000;
}

.whatsapp-btn {
	background: #25D366;
	color: white;
}

.footer-btn:hover {
	transform: scale(1.05);
	opacity: 0.95;
}

.footer-social {
	display: flex;
	gap: 15px;
	margin-top: 15px;
}

.footer-social a {
	color: #FFD700;
	font-size: 1.4rem;
	transition: 0.3s;
}

.footer-social a:hover {
	color: #fff;
	transform: scale(1.2);
}

.footer-qr {
	flex: 1 1 150px;
	text-align: center;
}

.footer-qr img {
	width: 100px;
	height: 100px;
	border: 3px dashed #FFD700;
	border-radius: 15px;
	background: #222;
	padding: 10px;
}

.footer-bottom {
	text-align: center;
	font-size: 0.85rem;
	color: #c5bb9a;
	margin-top: 40px;
	border-top: 1px solid #FFD70030;
	padding-top: 20px;
}

.footer-bottom a {
	color: #FFD700;
	text-decoration: none;
}

.footer-bottom a:hover {
	text-decoration: underline;
}

/* ✅ Responsive */
@media ( max-width : 768px) {
	.footer-container {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	.footer-brand {
		flex-direction: column;
		align-items: center;
	}
	.footer-btn {
		margin: 0 auto 10px;
	}
	.footer-social {
		justify-content: center;
	}
}