/* ======================================
   CONTACT DETAILS SECTION — GOLD JEWELRY
====================================== */
.dr1015contactdetails {
	max-width: 520px;
	margin: auto;
	padding: 40px 35px;
	background: linear-gradient(145deg, #0b0b0f, #0a0710);
	border-radius: 22px;
	box-shadow: 0 25px 70px rgba(0, 0, 0, 0.7), inset 0 1px 0
		rgba(255, 255, 255, 0.05);
	font-family: 'Montserrat', sans-serif;
	color: #e9e6e1;
	position: relative;
	overflow: hidden;
}

/* Gold Glow Border */
.dr1015contactdetails::before {
	content: "";
	position: absolute;
	inset: -2px;
	border-radius: 24px;
	background: linear-gradient(120deg, transparent, #b8860b, #f3c56a, transparent);
	filter: blur(14px);
	z-index: -1;
}

/* Section Title */
.dr1015contactdetails h3 {
	font-size: 28px;
	font-weight: 800;
	margin-bottom: 18px;
	color: #f3d27a;
	text-shadow: 0 10px 20px rgba(0, 0, 0, 0.8);
}

/* Paragraph Styling */
.dr1015contactdetails p {
	font-size: 16px;
	line-height: 1.7;
	margin: 12px 0;
	color: #d9d4cf;
}

/* Links */
.dr1015contactdetails a {
	color: #f3d27a;
	text-decoration: none;
	border-bottom: 1px dashed rgba(243, 210, 122, 0.6);
	transition: all 0.3s ease;
}

.dr1015contactdetails a:hover {
	color: #fff;
	border-bottom: 1px solid rgba(243, 210, 122, 0.9);
}

/* Strong tag styling */
.dr1015contactdetails strong {
	color: #fff;
}

/* Mobile Responsive */
@media ( max-width : 768px) {
	.dr1015contactdetails {
		padding: 30px 20px;
	}
	.dr1015contactdetails h3 {
		font-size: 24px;
	}
	.dr1015contactdetails p {
		font-size: 15px;
	}
}