.dr1015footer {
	background: linear-gradient(145deg, #1a1200, #2c1d07);
	color: #ffcc70;
	font-family: 'Poppins', sans-serif;
	box-shadow: inset 0 10px 25px rgba(255, 215, 0, 0.3);
	border-top: 4px solid #ffd700;
}

.dr1015footer footer {
	padding: 40px 20px;
	text-align: center;
	max-width: 1200px;
	margin: 0 auto;
}

.dr1015footer .footer-top {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	gap: 35px;
	margin-bottom: 30px;
}

.dr1015footer .footer-brand, .footer-links, .footer-contact {
	flex: 1 1 280px;
	max-width: 320px;
}

.dr1015footer .footer-logo {
	width: 90px;
	margin-bottom: 15px;
	filter: drop-shadow(0 0 6px #ffd700);
}

.dr1015footer .footer-brand h2 {
	margin: 15px 0 10px;
	color: #ffd700;
	font-weight: 800;
	letter-spacing: 1.2px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

.dr1015footer .footer-brand p {
	font-size: 1rem;
	color: #f5c979;
	line-height: 1.6;
	font-weight: 500;
}

.dr1015footer .call-button, .whatsapp-chat {
	display: inline-block;
	margin: 10px 8px;
	padding: 12px 20px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 700;
	font-size: 1rem;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(255, 215, 0, 0.6);
}

.dr1015footer .call-button {
	background: #ffd700;
	color: #1a1200;
	border: 2px solid transparent;
}

.dr1015footer .call-button:hover {
	background: transparent;
	color: #ffd700;
	border-color: #ffd700;
	box-shadow: 0 0 15px #ffd700;
}

.dr1015footer .whatsapp-chat {
	background: #25d366;
	color: #fff;
	border: 2px solid #1ebe5d;
}

.dr1015footer .whatsapp-chat:hover {
	background: #1ebe5d;
	border-color: #17a54d;
	box-shadow: 0 0 10px #1ebe5d;
}

.dr1015footer .footer-links h3, .footer-contact h3 {
	color: #ffd700;
	margin-bottom: 15px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.dr1015footer .footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.dr1015footer .footer-links li {
	margin: 10px 0;
}

.dr1015footer .footer-links a {
	color: #ffdd99;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}

.dr1015footer .footer-links a:hover {
	color: #ffd700;
	text-shadow: 0 0 10px #ffd700;
}

.dr1015footer .footer-contact a {
	color: #ffdd99;
	display: block;
	margin-bottom: 12px;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

.dr1015footer .footer-contact a:hover {
	color: #ffd700;
	text-shadow: 0 0 10px #ffd700;
}

/* QR Code Section */
.dr1015footer .qr-code-section {
	margin-top: 20px;
	text-align: center;
}

.dr1015footer .qr-title {
	color: #ffdd99;
	font-size: 0.9rem;
	margin-bottom: 10px;
	font-weight: 600;
}

.dr1015footer .qr-code {
	width: 90px;
	border: 3px solid #ffd700;
	border-radius: 10px;
	padding: 5px;
	box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

/* Footer Bottom */
.dr1015footer .footer-bottom {
	border-top: 1.5px solid #333;
	padding-top: 20px;
	margin-top: 30px;
	font-size: 0.9rem;
	color: #d8b963;
}

.dr1015footer .footer-bottom a {
	color: #ffd700;
	text-decoration: none;
	font-weight: 600;
	transition: text-decoration 0.3s ease;
}

.dr1015footer .footer-bottom a:hover {
	text-decoration: underline;
	text-shadow: 0 0 6px #ffd700;
}

/* Social Icons */
.dr1015footer .social-icons {
	margin: 20px 0 0;
	display: flex;
	justify-content: center;
	gap: 18px;
}

.dr1015footer .social-icons a {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ffd700;
	color: #1a1200;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	font-size: 20px;
	text-decoration: none;
	box-shadow: 0 5px 12px rgba(255, 215, 0, 0.7);
	transition: all 0.3s ease-in-out;
}

.dr1015footer .social-icons a:hover {
	transform: scale(1.2);
	background: #fff;
	color: #ffd700;
	box-shadow: 0 6px 18px rgba(255, 215, 0, 0.9);
}

/* Responsive */
@media ( max-width : 768px) {
	.dr1015footer .footer-top {
		flex-direction: column;
		align-items: center;
	}
	.dr1015footer .footer-brand, .footer-links, .footer-contact {
		text-align: center;
		max-width: 100%;
	}
	.dr1015footer .qr-code-section {
		text-align: center;
	}
	.dr1015footer .social-icons {
		flex-wrap: wrap;
	}
}