.dr1016footer footer {
	background-color: #004d40;
	color: #fff;
	padding: 40px 30px;
	font-family: 'Segoe UI', sans-serif;
	position: relative;
}

.dr1016footer .footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 30px;
	max-width: 1200px;
	margin: auto;
}

.dr1016footer .footer-logo-title {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 15px;
}

.dr1016footer .footer-logo-title img {
	width: 125px;
	height: 100px;
	border-radius: 10px;
	background: #fff;
	padding: 5px;
}

.dr1016footer a {
	color: #ffffff;
	text-decoration: none;
}

.dr1016footer a:hover {
	text-decoration: underline;
	color: #80cbc4;
}

.dr1016footer footer ul {
	list-style: none;
	padding: 0;
}

.dr1016footer footer ul li {
	margin-bottom: 8px;
}

/* --- Social Icons --- */
.dr1016footer .social-icons {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.dr1016footer .social-icons a {
	color: #fff;
	font-size: 1.3rem;
	text-decoration: none;
	transition: color 0.3s ease;
}

.dr1016footer .social-icons a:hover {
	color: #80cbc4;
}

/* --- Contact Buttons --- */
.dr1016footer .contact-buttons {
	margin-top: 30px;
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

.dr1016footer .contact-buttons a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 28px;
	border-radius: 30px;
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	text-decoration: none;
	cursor: pointer;
	user-select: none;
	background: linear-gradient(145deg, #007bff, #0056b3);
	box-shadow: 0 6px 20px rgba(0, 123, 255, 0.5);
	transition: all 0.3s ease;
}

.dr1016footer .contact-buttons a:hover {
	background: linear-gradient(145deg, #0056b3, #003d80);
	box-shadow: 0 8px 25px rgba(0, 86, 179, 0.7);
}

.dr1016footer .contact-buttons a i {
	font-size: 20px;
}

/* --- QR Code (centered fix) --- */
.dr1016footer .qr {
	grid-column: 1/-1; /* full-width across grid */
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin-top: 20px;
}

.dr1016footer .qr img {
	width: 100px;
	height: 100px;
	border: 2px solid #80cbc4;
	border-radius: 10px;
	padding: 5px;
	background: #fff;
}

/* --- Responsive Adjustments --- */
@media ( max-width : 480px) {
	.dr1016footer .footer-grid {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.dr1016footer .footer-logo-title {
		justify-content: center;
		text-align: center;
		flex-direction: column;
	}
	.dr1016footer .social-icons {
		justify-content: center;
	}
	.dr1016footer .contact-buttons {
		flex-direction: column;
		align-items: center;
		gap: 15px;
	}
}