/* ============================= */
/* MAP SECTION – PREMIUM STYLE   */
/* ============================= */

.dr1007map {
	padding: 70px 20px;
	background: linear-gradient(to bottom, #fffaf4, #fff3e0);
	font-family: 'Segoe UI', 'Noto Sans Telugu', sans-serif;
}

/* ============================= */
/* CONTAINER                     */
/* ============================= */
.dr1007map .map-section {
	max-width: 1100px;
	margin: auto;
	text-align: center;
}

/* ============================= */
/* TITLE                         */
/* ============================= */
.dr1007map .map-label {
	font-size: 2.4rem;
	font-weight: 800;
	color: #e65100;
	margin-bottom: 30px;
	letter-spacing: 0.4px;
	background: linear-gradient(90deg, #ff6f00, #ffa000);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	position: relative;
}

/* Decorative underline */
.dr1007map .map-label::after {
	content: "";
	display: block;
	width: 90px;
	height: 4px;
	background: linear-gradient(90deg, #ff9800, #ffcc80);
	margin: 14px auto 0;
	border-radius: 5px;
}

/* ============================= */
/* MAP CARD                      */
/* ============================= */
.dr1007map .map-container {
	border-radius: 22px;
	overflow: hidden;
	background: #ffffff;

	box-shadow:
		0 18px 45px rgba(0, 0, 0, 0.12),
		inset 0 0 0 1px rgba(255, 152, 0, 0.15);

	transition:
		transform 0.35s ease,
		box-shadow 0.35s ease;
}

/* Soft premium hover */
.dr1007map .map-container:hover {
	transform: translateY(-4px);
	box-shadow:
		0 26px 60px rgba(0, 0, 0, 0.18),
		inset 0 0 0 1px rgba(255, 152, 0, 0.25);
}

/* ============================= */
/* MAP IFRAME                    */
/* ============================= */
.dr1007map .map-frame {
	width: 100%;
	height: 460px;
	border: none;
	display: block;
	filter: saturate(1.05) contrast(1.02);
}

/* ============================= */
/* TABLET                        */
/* ============================= */
@media (max-width: 768px) {
	.dr1007map .map-label {
		font-size: 2rem;
	}
	.dr1007map .map-frame {
		height: 360px;
	}
}

/* ============================= */
/* MOBILE                        */
/* ============================= */
@media (max-width: 480px) {
	.dr1007map {
		padding: 45px 12px;
	}
	.dr1007map .map-label {
		font-size: 1.7rem;
	}
	.dr1007map .map-frame {
		height: 260px;
	}
}