.dr1043footer {
	background: linear-gradient(135deg, #00796b, #26a69a);
	color: #fff;
	font-family: 'Poppins', sans-serif;
	padding: 50px 20px 20px;
}

.footer-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
}

/* Branding */
.footer-branding {
	flex: 1 1 250px;
	min-width: 200px;
	text-align: left;
}

.footer-logo {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	padding: 3px; /* space for gradient */
	background: linear-gradient(135deg, #FFD700, #FFB400);
	/* gradient border */
	margin-bottom: 10px;
}

.footer-logo img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	display: block;
}

.footer-branding h2 {
	font-size: 1.5rem;
	margin-bottom: 10px;
}

.footer-branding p {
	font-size: 0.9rem;
	line-height: 1.4;
}

/* Quick Links */
.footer-links {
	flex: 1 1 180px;
	min-width: 150px;
}

.footer-links h3 {
	font-size: 1.1rem;
	margin-bottom: 10px;
	border-bottom: 2px solid #fff;
	display: inline-block;
	padding-bottom: 5px;
}

.footer-links ul {
	list-style: none;
	padding: 0;
}

.footer-links ul li {
	margin-bottom: 8px;
}

.footer-links ul li a {
	color: #fff;
	text-decoration: none;
	transition: 0.3s;
}

.footer-links ul li a:hover {
	color: #ffeb3b;
}

/* Contact Section */
.footer-contact {
	flex: 1 1 250px;
	min-width: 200px;
}

.footer-contact h3 {
	font-size: 1.1rem;
	margin-bottom: 10px;
	border-bottom: 2px solid #fff;
	display: inline-block;
	padding-bottom: 5px;
}

.footer-contact p {
	font-size: 0.9rem;
	line-height: 1.4;
	margin-bottom: 5px;
}

/* Location Link Styling */
.footer-contact a {
	color: #ffeb3b; /* Highlighted color */
	text-decoration: none;
	font-weight: 600;
	transition: 0.3s;
}

.footer-contact a:hover {
	color: #fff;
	text-decoration: underline;
}

.footer-buttons {
	margin-top: 10px;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.footer-btn {
	padding: 8px 15px;
	border-radius: 20px;
	font-weight: 600;
	text-decoration: none;
	color: #fff;
	transition: 0.3s;
	font-size: 0.9rem;
}

.footer-btn.whatsapp {
	background: #25D366;
}

.footer-btn.call {
	background: #00796b;
}

.footer-btn:hover {
	opacity: 0.85;
}

/* Social & QR */
.footer-social {
	flex: 1 1 180px;
	min-width: 150px;
}

.footer-social h3 {
	font-size: 1.1rem;
	margin-bottom: 10px;
	border-bottom: 2px solid #fff;
	display: inline-block;
	padding-bottom: 5px;
}

.social-icons {
	display: flex;
	gap: 10px;
	margin-bottom: 15px;
}

.social-icons a {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #004d40;
	color: #fff;
	border-radius: 50%;
	transition: 0.3s;
}

.social-icons a:hover {
	background: #ffeb3b;
	color: #00796b;
}

.qr-code {
	text-align: center;
}

.qr-code img {
	width: 100px;
	height: 100px;
	margin-top: 5px;
	border-radius: 12px;
	border: 2px solid #fff;
}

/* Footer Bottom */
.footer-bottom {
	text-align: center;
	margin-top: 30px;
	font-size: 0.85rem;
	border-top: 1px solid rgba(255, 255, 255, 0.4);
	padding-top: 10px;
}

.footer-bottom a {
	color: #ffeb3b;
	text-decoration: none;
}

.footer-bottom a:hover {
	text-decoration: underline;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
	.footer-container {
		flex-direction: column;
		gap: 25px;
		text-align: center;
	}
	.footer-branding {
		text-align: center;
	}
	.footer-buttons {
		justify-content: center;
	}
	.social-icons {
		justify-content: center;
	}
}