.dr1060sitemap {
	position: relative;
	padding: 70px 20px;
	background: radial-gradient(circle at top, #0b1020, #050814);
	color: #fff;
	overflow: hidden;
	perspective: 1200px;
}

/* HERO CONTAINER */
.sitemap-hero {
	position: relative;
	height: 340px;
	border-radius: 24px;
	overflow: hidden;
	margin-bottom: 60px;
	box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
}

/* IMAGE BACKGROUND LAYER */
.hero-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* restores cinematic depth */
	transform: scale(1.08);
	filter: brightness(0.9) contrast(1.1);
}

/* DARK GRADIENT OVERLAY (critical for premium feel) */
.hero-overlay {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at top, rgba(0, 229, 255, 0.15),
		transparent 60%), linear-gradient(135deg, rgba(5, 8, 20, 0.9),
		rgba(10, 20, 60, 0.75));
	z-index: 1;
}

/* TEXT LAYER */
.hero-content {
	position: relative;
	z-index: 2;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 40px;
}

/* PREMIUM TITLE */
.hero-content h1 {
	font-size: 52px;
	letter-spacing: 1px;
	background: linear-gradient(90deg, #00e5ff, #7c4dff, #00ffb2);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* SUBTEXT */
.hero-content p {
	max-width: 650px;
	opacity: 0.9;
	margin-top: 12px;
	font-size: 16px;
}

/* GRID */
.sitemap-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 18px;
}

/* GLASS CARDS */
.sitemap-card {
	padding: 18px 16px;
	border-radius: 16px;
	text-decoration: none;
	color: #fff;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(16px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	transition: all 0.35s ease;
	position: relative;
	overflow: hidden;
}

/* NEON GLOW */
.sitemap-card::before {
	content: "";
	position: absolute;
	inset: -2px;
	background: linear-gradient(120deg, #00e5ff, #7c4dff, #00ffb2);
	opacity: 0;
	transition: opacity 0.35s ease;
	filter: blur(18px);
	z-index: -1;
}

.sitemap-card:hover {
	transform: translateY(-8px) rotateX(6deg);
	border-color: rgba(255, 255, 255, 0.25);
}

.sitemap-card:hover::before {
	opacity: 0.6;
}