/* ===============================
   DR1052 MAP SECTION
================================ */
.dr1052map {
	position: relative;
	padding: 120px 0;
	background: radial-gradient(circle at top, rgba(15, 118, 110, .12),
		transparent 55%), linear-gradient(180deg, #020617, #01030a);
	overflow: hidden;
	font-family: 'Montserrat', sans-serif;
}

/* Perspective for 3D */
@media ( min-width : 769px) {
	.dr1052map {
		perspective: 1400px;
	}
}

/* ===============================
   CONTAINER
================================ */
.dr1052map .map-container {
	max-width: 1100px;
	margin: auto;
	padding: 0 20px;
	text-align: center;
	position: relative;
	z-index: 2;
}

/* ===============================
   TITLES
================================ */
.dr1052map .map-title {
	font-size: 38px;
	font-weight: 800;
	color: #e5e7eb;
	margin-bottom: 8px;
	text-shadow: 0 20px 50px rgba(0, 0, 0, .9);
}

.dr1052map .map-address {
	font-size: 16px;
	color: #9ca3af;
	margin-bottom: 40px;
}

/* ===============================
   MAP CARD (3D PANEL)
================================ */
.dr1052map .map-card {
	position: relative;
	padding: 18px;
	border-radius: 26px;
	background: linear-gradient(145deg, #0b1220, #050b15);
	transform-style: preserve-3d;
	will-change: transform;
	backface-visibility: hidden;
	transform: translateZ(0);
	box-shadow: 0 45px 120px rgba(0, 0, 0, .9), inset 0 1px 0
		rgba(255, 255, 255, .04);
	transition: transform .7s cubic-bezier(.22, 1, .36, 1), box-shadow .6s
		ease, opacity .8s ease;
}

/* Glow seam */
.dr1052map .map-card::before {
	content: "";
	position: absolute;
	inset: -2px;
	border-radius: 28px;
	background: linear-gradient(120deg, transparent, rgba(255, 183, 3, .35),
		transparent);
	filter: blur(18px);
	opacity: 0;
	transition: opacity .5s ease;
	z-index: -1;
}

.dr1052map .map-card:hover::before {
	opacity: 1;
}

/* IFRAME */
.dr1052map .map-card iframe {
	width: 100%;
	height: 420px;
	border: none;
	border-radius: 18px;
	filter: grayscale(15%) contrast(105%);
}

/* Hover lift */
@media ( min-width : 769px) {
	.dr1052map .map-card:hover {
		box-shadow: 0 80px 160px rgba(0, 0, 0, 1);
	}
}

/* ===============================
   ACTION BUTTONS
================================ */
.dr1052map .map-actions {
	margin-top: 36px;
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

.dr1052map .map-actions .btn {
	padding: 14px 28px;
	border-radius: 40px;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: .4px;
	text-decoration: none;
	cursor: pointer;
	transition: .35s ease;
	box-shadow: 0 20px 40px rgba(0, 0, 0, .7);
}

/* Map button */
.dr1052map .map-btn {
	background: linear-gradient(135deg, #ffb703, #ff7b00);
	color: #000;
}

.dr1052map .map-btn:hover {
	transform: translateY(-4px);
	box-shadow: 0 30px 60px rgba(255, 183, 3, .6);
}

/* Call button */
.dr1052map .call-btn {
	background: linear-gradient(135deg, #1f2933, #0b0e14);
	color: #e5e7eb;
	border: 1px solid rgba(255, 255, 255, .08);
}

.dr1052map .call-btn:hover {
	transform: translateY(-4px);
	border-color: #ffb703;
	box-shadow: 0 30px 60px rgba(0, 0, 0, .85);
}

/* ===============================
   SCROLL REVEAL STATES
================================ */
.dr1052map .map-card.reveal-init {
	opacity: 0;
	transform: translateY(60px) rotateX(14deg);
}

.dr1052map .map-card.reveal-show {
	opacity: 1;
	transform: translateY(0) rotateX(0deg);
}

/* ===============================
   MOBILE SAFETY
================================ */
@media ( max-width : 768px) {
	.dr1052map {
		padding: 90px 0;
	}
	.dr1052map .map-title {
		font-size: 30px;
	}
	.dr1052map .map-card iframe {
		height: 300px;
	}

	/* Disable 3D tilt only */
	.dr1052map .map-card {
		transform: translateY(0) !important;
	}
}