/* =========================
   ROOT (CRITICAL)
========================= */
.dr1051contactus {
	font-family: 'Poppins', sans-serif;
	background: #f8fafc;
	color: #0f172a;
	box-sizing: border-box;
	width: 100%;
}

.dr1051contactus *, .dr1051contactus *::before, .dr1051contactus *::after
	{
	box-sizing: inherit;
	max-width: 100%;
}

/* Text overflow protection */
.dr1051contactus h1, .dr1051contactus h2, .dr1051contactus p,
	.dr1051contactus span, .dr1051contactus a, .dr1051contactus strong {
	word-wrap: break-word;
	overflow-wrap: anywhere;
}

/* =========================
   HERO
========================= */
.dr1051contactus .cu-hero {
	background: linear-gradient(135deg, #020617, #0f172a);
	color: #ffffff;
	text-align: center;
	padding: 90px 20px;
}

.dr1051contactus .cu-hero h1 {
	font-size: 42px;
	font-weight: 800;
	margin-bottom: 10px;
	line-height: 1.2;
}

.dr1051contactus .cu-hero p {
	font-size: 16px;
	color: #c7d2fe;
}

/* =========================
   CONTAINER (SAFE)
========================= */
.dr1051contactus .cu-container {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto 80px;
	padding: 0 20px;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px;
	transform: translateY(-50px);
}

/* =========================
   CARD
========================= */
.dr1051contactus .cu-card {
	background: #ffffff;
	border-radius: 22px;
	padding: 30px 28px;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

/* =========================
   INFO (FLEX FIX)
========================= */
.dr1051contactus .cu-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 14px;
	font-size: 15px;
	color: #334155;
	flex-wrap: wrap; /* 🔑 FIX */
}

.dr1051contactus .cu-item i {
	color: #2563eb;
	margin-top: 4px;
	flex-shrink: 0;
}

.dr1051contactus .cu-item a {
	color: #2563eb;
	font-weight: 600;
	text-decoration: none;
	max-width: 100%;
	word-break: break-word;
}

.dr1051contactus .cu-item a:hover {
	text-decoration: underline;
}

/* =========================
   WHATSAPP (BUTTON FIX)
========================= */
.dr1051contactus .cu-whatsapp {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 20px;
	padding: 12px 20px;
	background: #22c55e;
	color: #ffffff;
	font-weight: 600;
	border-radius: 999px;
	text-decoration: none;
	max-width: 100%;
	white-space: normal; /* 🔑 FIX */
	text-align: center;
}

/* =========================
   HIGHLIGHTS GRID
========================= */
.dr1051contactus .cu-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	text-align: center;
}

.dr1051contactus .cu-grid strong {
	font-size: 26px;
	font-weight: 800;
	color: #34d399;
	line-height: 1.1;
}

/* =========================
   MAP (SAFE)
========================= */
.dr1051contactus .cu-map iframe {
	width: 100%;
	height: 320px;
	border: 0;
	border-radius: 16px;
	display: block;
}

/* =========================
   RESPONSIVE
========================= */
@media ( max-width : 768px) {
	.dr1051contactus .cu-hero h1 {
		font-size: 32px;
	}
	.dr1051contactus .cu-container {
		grid-template-columns: 1fr;
		transform: translateY(-40px);
	}
	.dr1051contactus .cu-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.dr1051contactus .cu-card {
		padding: 22px 20px;
	}
}