/* ================= ROOT ================= */
.dr1058locations {
	padding: 100px 20px;
	background: linear-gradient(135deg, #020617, #0f172a);
	color: #fff;
	position: relative;
	overflow: hidden;
}

/* SOFT GLOW */
.dr1058locations::before {
	content: "";
	position: absolute;
	width: 400px;
	height: 400px;
	background: rgba(59, 130, 246, 0.15);
	filter: blur(120px);
	top: -120px;
	left: -100px;
}

/* ================= CONTAINER ================= */
.dr1058locations-container {
	max-width: 1000px;
	margin: auto;
	position: relative;
	z-index: 1;
}

/* ================= HEADER ================= */
.locations-header {
	text-align: center;
	margin-bottom: 60px;
	opacity: 0;
	transform: translateY(40px);
	transition: 0.8s ease;
}

.locations-tag {
	display: inline-block;
	padding: 6px 14px;
	border-radius: 999px;
	background: rgba(59, 130, 246, 0.15);
	border: 1px solid rgba(59, 130, 246, 0.4);
	font-size: 12px;
	margin-bottom: 14px;
}

.locations-header h2 {
	font-size: clamp(30px, 4vw, 42px);
	font-weight: 800;
	margin-bottom: 12px;
}

.locations-header p {
	color: #cbd5f5;
	max-width: 600px;
	margin: auto;
}

/* ================= CARD ================= */
.location-card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	border-radius: 20px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(16px);
	box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
	opacity: 0;
	transform: translateY(40px) scale(0.98);
	transition: 0.8s ease;
}

/* ================= CONTENT ================= */
.location-content {
	padding: 40px;
}

.location-content h3 {
	font-size: 22px;
	margin-bottom: 12px;
}

.address {
	font-size: 15px;
	color: #cbd5f5;
	margin-bottom: 16px;
}

.note {
	color: #facc15;
	font-size: 14px;
	margin-bottom: 24px;
}

/* ================= BUTTONS ================= */
.actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.btn {
	padding: 12px 22px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
}

.btn.primary {
	background: linear-gradient(135deg, #3b82f6, #2563eb);
	color: #fff;
	box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.btn.secondary {
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: #fff;
}

/* ================= MAP ================= */
.location-map iframe {
	width: 100%;
	height: 100%;
	min-height: 320px;
	border: none;
}

/* ================= SHOW ================= */
.dr1058locations.show .locations-header {
	opacity: 1;
	transform: translateY(0);
}

.dr1058locations.show .location-card {
	opacity: 1;
	transform: translateY(0) scale(1);
}

/* ================= STRUCTURED INFO ================= */
.dr1058locations .location-info {
	list-style: none;
	padding: 0;
	margin: 18px 0 20px;
}

.dr1058locations .location-info li {
	font-size: 14.5px;
	color: #e2e8f0;
	margin-bottom: 8px;
	line-height: 1.6;
}

.dr1058locations .location-info strong {
	color: #93c5fd;
	font-weight: 600;
}

/* ================= BUTTON POLISH ================= */
.dr1058locations .btn {
	position: relative;
	overflow: hidden;
	transition: all 0.35s ease;
}

/* glossy effect */
.dr1058locations .btn.primary::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.5),
		transparent);
	transition: 0.6s;
}

.dr1058locations .btn.primary:hover::before {
	left: 100%;
}

.dr1058locations .btn.primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 15px 40px rgba(59, 130, 246, 0.5);
}

.dr1058locations .btn.secondary:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: translateY(-2px);
}

/* ================= NOTE IMPROVEMENT ================= */
.dr1058locations .note {
	color: #fde68a;
	font-size: 13.5px;
	line-height: 1.5;
	background: rgba(250, 204, 21, 0.08);
	padding: 10px 12px;
	border-radius: 8px;
	display: inline-block;
}

/* ================= CONTACT BLOCK ================= */
.location-contact {
	margin: 18px 0 24px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

/* EMAIL */
.contact-email {
	font-size: 14px;
	color: #cbd5f5;
}

.contact-email a {
	color: #facc15;
	text-decoration: none;
	font-weight: 500;
	transition: 0.25s ease;
}

.contact-email a:hover {
	color: #fde047;
}

/* PHONES */
.contact-phones {
	font-size: 13.5px;
	color: #e2e8f0;
	line-height: 1.6;
}

.contact-phones span {
	display: block;
	opacity: 0.9;
}

/* subtle hover polish */
.contact-phones span:hover {
	color: #93c5fd;
}

/* ================= MOBILE ================= */
@media ( max-width : 768px) {
	.location-card {
		grid-template-columns: 1fr;
	}
	.location-content {
		padding: 24px;
	}
	.locations-header h2 {
		font-size: 26px;
	}
}