.dr1057locations {
	padding: 100px 20px;
	background: radial-gradient(circle at top, #070b1a, #020617);
	color: #fff;
	font-family: 'Segoe UI', sans-serif;
	position: relative;
	overflow: hidden;
}

/* soft moving glow background */
.dr1057locations::before,
.dr1057locations::after {
	content: "";
	position: absolute;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	filter: blur(120px);
	opacity: 0.35;
	animation: floatGlow 8s ease-in-out infinite;
}

.dr1057locations::before {
	background: radial-gradient(circle, rgba(255, 215, 0, 0.18), transparent 60%);
	top: -180px;
	left: -180px;
}

.dr1057locations::after {
	background: radial-gradient(circle, rgba(0, 212, 255, 0.12), transparent 60%);
	bottom: -180px;
	right: -180px;
	animation-delay: 2s;
}

@keyframes floatGlow {
	0%, 100% { transform: translateY(0px) scale(1); }
	50% { transform: translateY(25px) scale(1.1); }
}

/* container */
.dr1057locations-container {
	max-width: 1200px;
	margin: auto;
	position: relative;
	z-index: 2;
}

/* title */
.dr1057locations-title {
	text-align: center;
	font-size: 2.6rem;
	margin-bottom: 10px;

	background: linear-gradient(90deg, #ffd700, #ffffff, #ffd700);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;

	opacity: 0;
	transform: translateY(25px);
	transition: 0.8s ease;
}

/* subtitle */
.dr1057locations-subtitle {
	text-align: center;
	color: #cfd8dc;
	max-width: 700px;
	margin: 0 auto 60px auto;
	font-size: 1rem;
	opacity: 0.85;
}

.dr1057locations-subtitle span {
	color: #ffd700;
	font-weight: 600;
}

/* grid */
.dr1057locations-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

/* card */
.dr1057locations-card {
	position: relative;
	padding: 25px;
	border-radius: 22px;

	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(18px);

	border: 1px solid rgba(255, 215, 0, 0.15);
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);

	overflow: hidden;

	opacity: 0;
	transform: translateY(45px) scale(0.98);
	transition: all 0.8s ease;
}

/* reveal animation */
.dr1057locations-card.show {
	opacity: 1;
	transform: translateY(0) scale(1);
}

/* hover premium lift */
.dr1057locations-card:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 25px 80px rgba(255, 215, 0, 0.15);
}

/* golden glow layer */
.dr1057locations-glow {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.18), transparent 65%);
	pointer-events: none;
}

/* heading */
.dr1057locations-card h3 {
	font-size: 1.4rem;
	margin-bottom: 10px;
}

/* address */
.dr1057locations-address {
	font-size: 0.95rem;
	opacity: 0.85;
	margin-bottom: 10px;
}

/* time */
.dr1057locations-time {
	font-weight: 600;
	color: #ffd700;
	margin-bottom: 15px;
}

/* map */
.dr1057locations-card iframe {
	width: 100%;
	height: 260px;
	border-radius: 14px;
	border: none;
	filter: grayscale(10%) contrast(1.1);
	transition: 0.4s ease;
}

.dr1057locations-card:hover iframe {
	filter: grayscale(0%) contrast(1.2);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
	.dr1057locations-grid {
		grid-template-columns: 1fr;
	}

	.dr1057locations-title {
		font-size: 2rem;
	}
}