/* Sitemap Styles */
.sitemap-header {
    background: #0f172a;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sitemap-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.sitemap-desc {
    font-size: 1.1rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
}

.sitemap-content-wrap {
    background: #f8fafc;
    min-height: 60vh;
    padding: 60px 20px;
}

.sitemap-container {
    max-width: 1200px;
    margin: -100px auto 0;
    position: relative;
    z-index: 10;
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.sitemap-section {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.sitemap-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.sitemap-section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f5f9;
}

.sitemap-section-title .dashicons {
    color: var(--accent-primary, #06b6d4);
    font-size: 24px;
    width: 24px;
    height: 24px;
}

.sitemap-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-list li {
    margin-bottom: 12px;
}

.sitemap-list a {
    color: #64748b;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sitemap-list a:before {
    content: '';
    width: 6px;
    height: 6px;
    background: #cbd5e1;
    border-radius: 50%;
    transition: background 0.2s;
}

.sitemap-list a:hover {
    color: var(--accent-primary, #06b6d4);
    transform: translateX(5px);
}

.sitemap-list a:hover:before {
    background: var(--accent-primary, #06b6d4);
}

/* Dark Mode */
[data-theme="dark"] .sitemap-content-wrap {
    background: #020617;
}

[data-theme="dark"] .sitemap-section {
    background: #1e293b;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .sitemap-section-title {
    color: #f8fafc;
    border-bottom-color: #334155;
}

[data-theme="dark"] .sitemap-list a {
    color: #94a3b8;
}

[data-theme="dark"] .sitemap-list a:hover {
    color: #38bdf8;
}

@media (max-width: 768px) {
    .sitemap-container {
        margin-top: -60px;
    }

    .sitemap-section {
        padding: 30px;
    }
}