/* =========================
   CONTACT SECTION (ULTRA PREMIUM)
========================= */
.dr1056contactus {
	padding: 130px 6%;
	background: radial-gradient(circle at top, #0f172a, #020617 70%);
	color: #fff;
	font-family: "Poppins", system-ui, sans-serif;
}

/* CONTAINER */
.dr1056contactus .container {
	max-width: 1350px;
	margin: auto;
}

/* =========================
   HEADER
========================= */
.dr1056contactus .header {
	text-align: center;
	margin-bottom: 90px;
}

.dr1056contactus .header h1 {
	font-size: 46px;
	font-weight: 800;
	background: linear-gradient(90deg, #ffffff, #ffd700);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.dr1056contactus .header p {
	max-width: 750px;
	margin: auto;
	margin-top: 14px;
	opacity: 0.85;
	line-height: 1.7;
}

/* =========================
   GRID
========================= */
.dr1056contactus .grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 30px;
	margin-bottom: 80px;
}

/* =========================
   CARDS (GLASS PREMIUM)
========================= */
.dr1056contactus .card {
	position: relative;
	padding: 35px;
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.04);
	backdrop-filter: blur(16px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	transition: all 0.45s ease;
	overflow: hidden;
}

/* GLOW BORDER EFFECT */
.dr1056contactus .card::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 22px;
	padding: 1px;
	background: linear-gradient(120deg, transparent, #ffd700, transparent);
	-webkit-mask: linear-gradient(#000 0 0) content-box,
		linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	opacity: 0;
	transition: 0.4s;
}

.dr1056contactus .card:hover::before {
	opacity: 1;
}

/* HOVER */
.dr1056contactus .card:hover {
	transform: translateY(-12px) scale(1.03);
	box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7);
}

/* TEXT */
.dr1056contactus .card h3 {
	font-size: 20px;
	margin-bottom: 12px;
	color: #ffd700;
}

.dr1056contactus .card p {
	line-height: 1.7;
	opacity: 0.9;
}

.dr1056contactus .small {
	font-size: 14px;
	opacity: 0.65;
	margin-top: 10px;
}

/* =========================
   MAP LINK
========================= */
.dr1056contactus .maplink {
	display: inline-block;
	margin-top: 12px;
	font-weight: 600;
	color: #ffd700;
	text-decoration: none;
	position: relative;
}

.dr1056contactus .maplink::after {
	content: "";
	position: absolute;
	width: 0%;
	height: 2px;
	bottom: -3px;
	left: 0;
	background: #ffd700;
	transition: 0.3s;
}

.dr1056contactus .maplink:hover::after {
	width: 100%;
}

/* =========================
   MAP (FLOATING CARD)
========================= */
.dr1056contactus .map {
	border-radius: 22px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.08);
	margin-bottom: 90px;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
	transition: 0.4s;
}

.dr1056contactus .map:hover {
	transform: scale(1.01);
}

.dr1056contactus .map iframe {
	width: 100%;
	height: 450px;
	border: 0;
}

/* =========================
   FOOTER CTA
========================= */
.dr1056contactus .footer {
	text-align: center;
	max-width: 750px;
	margin: auto;
}

.dr1056contactus .footer h3 {
	font-size: 26px;
	margin-bottom: 12px;
	background: linear-gradient(90deg, #ffd700, #ffcc70);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.dr1056contactus .footer p {
	opacity: 0.85;
	line-height: 1.7;
}

/* =========================
   MOBILE
========================= */
@media ( max-width : 900px) {
	.dr1056contactus {
		padding: 100px 6%;
	}
	.dr1056contactus .header h1 {
		font-size: 34px;
	}
	.dr1056contactus .map iframe {
		height: 300px;
	}
}