/* ================= MAP SECTION ================= */
.dr1051map {
	padding: 90px 20px;
	background: linear-gradient(180deg, #f8fafc, #ffffff);
}

/* Container */
.dr1051map .map-container {
	max-width: 1100px;
	margin: auto;
	text-align: center;
}

/* Title */
.dr1051map .map-title {
	font-size: 34px;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 10px;
}

.dr1051map .map-subtitle {
	display: block;
	font-size: 16px;
	font-weight: 600;
	color: #475569;
	margin-top: 6px;
}

/* Address */
.dr1051map .map-address {
	font-size: 15px;
	color: #64748b;
	line-height: 1.7;
	margin: 22px auto 45px;
	max-width: 800px;
}

/* Map Card */
.dr1051map .map-card {
	background: #ffffff;
	border-radius: 22px;
	padding: 10px;
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
	position: relative;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dr1051map .map-card::after {
	content: "";
	position: absolute;
	top: -40px;
	right: -40px;
	width: 120px;
	height: 120px;
	background: radial-gradient(circle, rgba(15, 23, 42, 0.15), transparent);
	border-radius: 50%;
}

.dr1051map .map-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 26px 55px rgba(0, 0, 0, 0.16);
}

.dr1051map .map-card iframe {
	width: 100%;
	height: 450px;
	border: none;
	border-radius: 18px;
	display: block;
}

/* Actions */
.dr1051map .map-actions {
	margin-top: 36px;
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

.dr1051map .btn {
	padding: 14px 28px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	color: #ffffff;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dr1051map .map-btn {
	background: linear-gradient(135deg, #0f172a, #020617);
}

.dr1051map .call-btn {
	background: #0ea5e9;
}

.dr1051map .btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 22px rgba(0, 0, 0, 0.3);
}

/* ================= RESPONSIVE ================= */
@media ( max-width : 768px) {
	.dr1051map .map-title {
		font-size: 28px;
	}
	.dr1051map .map-card iframe {
		height: 360px;
	}
}

@media ( max-width : 480px) {
	.dr1051map {
		padding: 70px 14px;
	}
	.dr1051map .map-title {
		font-size: 24px;
	}
	.dr1051map .map-card iframe {
		height: 260px;
	}
}