.dr1030footer footer {
	background: linear-gradient(145deg, #121212, #1b1b1b);
	/* Dark charcoal to black */
	color: #f4e9d8; /* Light ivory-gold text */
	padding: 60px 40px 40px;
	font-family: 'Poppins', 'Noto Sans Telugu', sans-serif;
	border-top: 8px solid #FFD700; /* Gold top border */
	border-radius: 32px 32px 0 0;
	box-shadow: 0 -8px 60px rgba(255, 215, 0, 0.08);
}

/* Layout Grid */
.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 40px;
}

/* Logo and Title */
.footer-logo-title {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 30px;
}

.footer-logo-title img {
	width: 90px;
	border-radius: 50%;
	background: #0f0f0f;
	padding: 8px;
	box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3); /* Gold glow */
	border: 3px solid #FFD700;
	transition: transform 0.3s ease;
}

.footer-logo-title img:hover {
	transform: rotate(-5deg) scale(1.05);
}

.footer-logo-title h3 {
	font-size: 1.8rem;
	color: #FFD700;
	text-transform: uppercase;
	font-weight: 800;
	line-height: 1.2;
	text-shadow: 1px 1px 6px rgba(255, 215, 0, 0.4);
}

.footer-logo-title p {
	font-size: 1.1rem;
	color: #e0d2b6;
	margin-top: 6px;
	opacity: 0.85;
}

/* Links and Headings */
footer ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

footer ul li {
	margin-bottom: 12px;
	font-size: 16px;
	line-height: 1.6;
	display: flex;
	align-items: center;
	gap: 8px;
}

footer h4 {
	font-size: 1.3rem;
	color: #FFD700;
	margin-bottom: 14px;
	border-bottom: 2px solid #B8860B; /* Dark gold */
	display: inline-block;
	padding-bottom: 6px;
	font-weight: 700;
}

/* Link Colors */
.dr1030footer a {
	color: #e6c773;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

.dr1030footer a:hover {
	color: #FFD700;
	text-decoration: underline;
}

/* Social Media Icons */
.social-icons {
	display: flex;
	gap: 20px;
	margin-top: 10px;
}

.social-icons a {
	color: #FFD700;
	font-size: 1.6rem;
	transition: transform 0.3s ease, color 0.3s ease;
	filter: drop-shadow(0 0 1px #FFD700);
}

.social-icons a:hover {
	color: #e6c773;
	transform: scale(1.25) rotate(6deg);
	filter: drop-shadow(0 0 8px #fff3c0);
}

/* Contact Buttons */
.contact-buttons {
	margin-top: 24px;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
}

.contact-buttons a {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 28px;
	border-radius: 30px;
	font-weight: 700;
	background: linear-gradient(135deg, #FFD700, #b8860b);
	/* Gold gradient */
	box-shadow: 0 8px 24px rgba(255, 215, 0, 0.3);
	color: #000000;
	font-size: 16px;
	letter-spacing: 0.5px;
	transition: all 0.4s ease;
	border: 2px solid transparent;
}

.contact-buttons a.phone-btn {
	background: #1b1b1b;
	color: #FFD700;
	border: 2px solid #FFD700;
	box-shadow: 0 6px 20px rgba(255, 215, 0, 0.2);
}

.contact-buttons a:hover {
	transform: scale(1.1);
	background: #FFD700;
	color: #000 !important;
	border-color: #FFD700;
}

/* QR Section */
.qr {
	grid-column: 1/-1;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 40px;
	text-align: center;
}

.qr h4 {
	margin-bottom: 12px;
	color: #FFD700;
	font-weight: 800;
	font-size: 1.1rem;
}

.qr img {
	width: 110px;
	height: 110px;
	border: 4px dashed #FFD700;
	border-radius: 20px;
	padding: 10px;
	background: #0f0f0f;
	box-shadow: 0 6px 24px rgba(255, 215, 0, 0.4);
	transition: transform 0.3s ease;
}

.qr img:hover {
	transform: rotate(6deg) scale(1.1);
}

/* Copyright */
.footer-copy {
	text-align: center;
	font-size: 1rem;
	margin-top: 30px;
	color: #c0b8a0;
	font-weight: 600;
}

.footer-copy a {
	color: #FFD700;
	font-weight: 700;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-copy a:hover {
	color: #fff3c0;
	text-decoration: underline;
}

/* Responsive Adjustments */
@media ( max-width : 480px) {
	.footer-grid {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.footer-logo-title {
		flex-direction: column;
		align-items: center;
	}
	.contact-buttons {
		flex-direction: column;
		align-items: center;
	}
}