.dr1055contactus {
	padding: 120px 6%;
	background: linear-gradient(180deg, #020617, #0f172a);
	color: #fff;
	font-family: system-ui;
}

.dr1055contactus .container {
	max-width: 1300px;
	margin: auto;
}

/* Header */
.dr1055contactus .header {
	text-align: center;
	margin-bottom: 80px;
}

.dr1055contactus .header h1 {
	font-size: 44px;
	background: linear-gradient(90deg, #fff, #d4af37);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.dr1055contactus .header p {
	max-width: 720px;
	margin: auto;
	margin-top: 10px;
	opacity: .85;
}

/* Grid */
.dr1055contactus .grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 28px;
	margin-bottom: 60px;
}

/* Cards */
.dr1055contactus .card {
	padding: 32px;
	border-radius: 20px;
	background: rgba(255, 255, 255, .05);
	border: 1px solid rgba(255, 255, 255, .08);
	backdrop-filter: blur(14px);
	transition: .4s;
}

.dr1055contactus .card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 25px 60px rgba(0, 0, 0, .6);
}

.dr1055contactus .card h3 {
	color: #facc15;
	margin-bottom: 10px;
}

.dr1055contactus .card p {
	opacity: .9;
	line-height: 1.6;
}

.dr1055contactus .small {
	font-size: 14px;
	opacity: .7;
	margin-top: 8px;
}

/* Map link */
.dr1055contactus .maplink {
	display: inline-block;
	margin-top: 10px;
	color: #facc15;
	font-weight: 600;
	text-decoration: none;
}

.dr1055contactus .maplink:hover {
	text-decoration: underline;
}

/* Map */
.dr1055contactus .map {
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, .08);
	margin-bottom: 70px;
}

.dr1055contactus .map iframe {
	width: 100%;
	height: 420px;
	border: 0;
}

/* Footer */
.dr1055contactus .footer {
	text-align: center;
	max-width: 720px;
	margin: auto;
}

.dr1055contactus .footer h3 {
	color: #facc15;
	margin-bottom: 10px;
}

.dr1055contactus .footer p {
	opacity: .85;
}

/* Responsive */
@media ( max-width :768px) {
	.dr1055contactus {
		padding: 90px 6%;
	}
	.dr1055contactus .header h1 {
		font-size: 34px;
	}
	.dr1055contactus .map iframe {
		height: 320px;
	}
}