/* =========================================
   SITEMAP BASE
========================================= */
.dr1059sitemap {
	padding: 90px 20px;
	background: radial-gradient(circle at top, #0a0f2c, #020617);
	color: #fff;
	overflow: hidden;
	position: relative;
}

/* =========================================
   HEADER
========================================= */
.dr1059sitemap-header {
	text-align: center;
	margin-bottom: 40px;
}

.dr1059sitemap-header h1 {
	font-size: 2.4rem;
	background: linear-gradient(90deg, #00d4ff, #7c3aed);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 700;
}

.dr1059sitemap-subtitle {
	color: #cbd5f5;
	margin-top: 10px;
	max-width: 700px;
	margin-inline: auto;
}

/* =========================================
   HERO IMAGE
========================================= */
.dr1059sitemap-hero {
	position: relative;
	max-width: 900px;
	margin: 30px auto 50px;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.dr1059sitemap-hero img {
	width: 100%;
	height: 320px;
	object-fit: cover;
	display: block;
	filter: brightness(0.85);
	transition: transform 0.6s ease;
}

.dr1059sitemap-hero:hover img {
	transform: scale(1.05);
}

.dr1059sitemap-glow {
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, transparent, rgba(0, 212, 255, 0.2),
		transparent);
}

/* =========================================
   GRID
========================================= */
.dr1059sitemap-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	max-width: 1100px;
	margin: auto;
}

/* =========================================
   CARD (3D GLASS)
========================================= */
.dr1059sitemap-card {
	padding: 20px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(16px);
	border: 1px solid rgba(255, 255, 255, 0.12);
	text-decoration: none;
	color: #fff;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
	transform-style: preserve-3d;
}

/* glow border */
.dr1059sitemap-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, transparent, rgba(124, 58, 237, 0.25),
		transparent);
	opacity: 0;
	transition: 0.5s;
}

.dr1059sitemap-card:hover {
	transform: translateY(-10px) rotateX(6deg);
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
}

.dr1059sitemap-card:hover::before {
	opacity: 1;
}

.dr1059sitemap-card h2 {
	font-size: 1.2rem;
	color: #00d4ff;
	margin-bottom: 6px;
}

.dr1059sitemap-card p {
	font-size: 0.9rem;
	color: #cbd5f5;
	line-height: 1.5;
}

/* =========================================
   FOOTER SEO TEXT
========================================= */
.dr1059sitemap-footer {
	max-width: 900px;
	margin: 50px auto 0;
	text-align: center;
	color: #94a3b8;
	font-size: 0.9rem;
}

/* =========================================
   RESPONSIVE
========================================= */
@media ( max-width : 768px) {
	.dr1059sitemap-header h1 {
		font-size: 1.8rem;
	}
	.dr1059sitemap-hero img {
		height: 220px;
	}
}